:root {
    --navy: #063b6d;
    --navy-2: #082f55;
    --teal: #008c8c;
    --teal-2: #0aa7a7;
    --sky: #eaf7fb;
    --gold: #f4b73f;
    --ink: #132238;
    --muted: #5f7286;
    --line: #d8e8ef;
    --white: #ffffff;
    --soft: #f7fbfd;
    --shadow: 0 18px 50px rgba(6, 59, 109, .12);
    --radius: 18px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(0, 140, 140, .12), transparent 32rem),
        linear-gradient(180deg, #f8fcfe 0%, #ffffff 40%, #f5fbfd 100%);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    clip: auto;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
}

.section {
    width: min(100% - 1.25rem, var(--max));
    margin: 0 auto;
    padding: 4rem 0;
}

.hero {
    display: grid;
    gap: 2rem;
    padding-top: 2.3rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .45rem;
    margin-bottom: .9rem;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: clamp(2.25rem, 12vw, 4.8rem);
    line-height: .98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: .9rem;
    color: var(--navy);
    font-size: clamp(1.75rem, 8vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    color: var(--navy-2);
    font-size: 1.03rem;
    line-height: 1.25;
}

.hero-lead,
.human-line,
.section-intro p,
.product-copy p,
.vsl-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.human-line {
    margin: -0.25rem 0 1.1rem;
    color: var(--navy-2);
    font-weight: 850;
}

.hero-actions {
    display: grid;
    gap: .8rem;
    margin: 1.5rem 0 .75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: .9rem 1.25rem;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    color: var(--navy);
    border: 2px solid rgba(255, 255, 255, .9);
    background: linear-gradient(135deg, #ffe08a 0%, var(--gold) 52%, #e99f22 100%);
    box-shadow: 0 18px 38px rgba(244, 183, 63, .38), 0 8px 18px rgba(8, 47, 85, .16);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-1px);
    outline: 3px solid rgba(244, 183, 63, .4);
    background: linear-gradient(135deg, #ffe9a8 0%, #ffc947 48%, #f0a51f 100%);
    box-shadow: 0 22px 44px rgba(244, 183, 63, .46), 0 10px 22px rgba(8, 47, 85, .18);
}

.btn-secondary {
    color: var(--navy);
    border: 1px solid var(--line);
    background: var(--white);
}

.microcopy {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.2rem;
}

.trust-row span {
    padding: .45rem .7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--navy);
    font-size: .82rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .82);
}

.hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(160deg, var(--sky), #ffffff);
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    padding: .65rem;
}

.hero-media .guarantee-seal {
    position: absolute;
    right: .65rem;
    bottom: .65rem;
    z-index: 3;
    width: clamp(82px, 24vw, 142px);
    padding: 0;
    filter: drop-shadow(0 14px 22px rgba(6, 59, 109, .22));
}

.badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: .55rem .8rem;
    border-radius: 999px;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 900;
    background: var(--gold);
    box-shadow: 0 10px 22px rgba(244, 183, 63, .25);
}

.section-intro {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.icon-grid,
.check-list,
.outcome-grid,
.steps {
    display: grid;
    gap: .85rem;
}

.icon-card,
.outcome-card,
.steps article,
.split-card,
.offer-card,
.legal-grid article,
details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 35px rgba(6, 59, 109, .08);
}

.icon-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem;
}

.icon-card h3 {
    margin-bottom: 0;
}

.icon-dot {
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
    background: var(--teal);
}

.vsl-box {
    display: grid;
    gap: 1rem;
    overflow: hidden;
    max-width: 100%;
    padding: .8rem;
    border-radius: 26px;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.video-frame {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    background: var(--navy-2);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-copy {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.15rem 1rem 1rem;
    color: var(--white);
}

.vsl-copy h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    line-height: 1.12;
}

.vsl-copy h2,
.vsl-copy p {
    color: var(--white);
    max-width: 100%;
    overflow-wrap: break-word;
}

.vsl-copy .btn {
    max-width: 100%;
}

.product {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.product-image {
    display: grid;
    place-items: center;
    padding: 1rem;
    border-radius: 26px;
    background: var(--sky);
}

.product-image img {
    max-height: 460px;
    object-fit: contain;
}

.check-list {
    grid-template-columns: 1fr;
}

.check-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .9rem;
    border-bottom: 1px solid var(--line);
}

.check-item span,
.offer-list span,
.split-card span {
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--white);
    font-size: .85rem;
    font-weight: 900;
    background: var(--teal);
}

.check-item p,
.split-card p,
.offer-list p {
    margin: 0;
    color: var(--ink);
    font-weight: 750;
}

.bonus-grid {
    display: grid;
    gap: 1rem;
}

.inside-grid {
    display: grid;
    gap: 1rem;
}

.inside-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 14px 35px rgba(6, 59, 109, .08);
}

.inside-card img {
    width: 100%;
    height: clamp(300px, 74vw, 380px);
    object-fit: contain;
    object-position: top center;
    border-radius: 16px;
    background: #fff;
}

.inside-image-crop {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
}

.inside-image-crop img {
    width: calc(100% + 22px);
    max-width: none;
    transform: translateX(-11px);
}

.inside-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 750;
}

.bonus-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.bonus-card img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--sky);
}

.fit {
    display: grid;
    gap: 1rem;
}

.split-card {
    padding: 1.25rem;
}

.split-card p,
.offer-list p {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-top: .8rem;
}

.caution span {
    background: var(--gold);
    color: var(--navy);
}

.outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcome-card {
    padding: 1rem;
    color: var(--navy);
    font-weight: 900;
}

.steps article {
    display: flex;
    gap: .8rem;
    align-items: center;
    padding: 1rem;
}

.steps span {
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    color: var(--navy);
    font-weight: 900;
    background: var(--gold);
}

.steps p {
    margin: 0;
    font-weight: 800;
}

.human-note {
    width: min(100% - 1.25rem, 860px);
    display: grid;
    gap: 1.4rem;
    align-items: center;
    padding-top: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 140, 140, .22);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(234, 247, 251, .9), rgba(255, 255, 255, .95)),
        var(--white);
    box-shadow: 0 14px 35px rgba(6, 59, 109, .08);
}

.human-note p {
    color: var(--muted);
    font-size: 1.03rem;
}

.human-note p:last-child {
    margin-bottom: 0;
}

.human-note img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(6, 59, 109, .16);
}

.offer {
    width: min(100% - 1.25rem, 820px);
}

.offer-card {
    padding: 1.25rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(234, 247, 251, .94), rgba(255, 255, 255, .96)),
        var(--white);
}

.countdown {
    width: min(100%, 520px);
    margin: 1rem auto 1.2rem;
    padding: 1rem;
    border: 1px solid rgba(244, 183, 63, .48);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 183, 63, .18), rgba(234, 247, 251, .92));
}

.countdown p {
    margin-bottom: .65rem;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 950;
    text-transform: uppercase;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
}

.countdown-grid span {
    display: grid;
    gap: .1rem;
    padding: .7rem .45rem;
    border-radius: 14px;
    color: var(--white);
    background: var(--navy);
}

.countdown-grid strong {
    font-size: 1.45rem;
    line-height: 1;
}

.countdown-grid small {
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.price-box {
    margin: .7rem 0 .35rem;
}

.regular-price {
    margin: 0 0 .2rem;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.price {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 12vw, 4rem);
    font-weight: 950;
    line-height: 1;
}

.price-prefix {
    display: block;
}

.price-tax {
    margin: .35rem 0 0;
    color: var(--navy);
    font-size: .95rem;
    font-weight: 900;
}

.price-note {
    width: min(100%, 520px);
    margin: 0 auto 1.2rem;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 800;
}

.offer-list {
    width: min(100%, 500px);
    margin: 0 auto 1.3rem;
    text-align: left;
}

.guarantee-card {
    width: min(100%, 500px);
    margin: 0 auto 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(0, 140, 140, .26);
    border-radius: 18px;
    text-align: left;
    background: rgba(234, 247, 251, .72);
}

.guarantee-card strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--navy);
    font-size: 1.1rem;
}

.guarantee-card p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 750;
}

.guarantee-card p + p {
    margin-top: .7rem;
    color: var(--navy);
    font-weight: 850;
}

.btn-wide {
    width: 100%;
}

.secure {
    margin: .8rem 0 0;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: .8rem;
}

details {
    padding: 1rem;
}

summary {
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
}

details p {
    margin: .8rem 0 0;
    color: var(--muted);
}

.legal {
    padding-top: 2rem;
}

.legal-grid {
    display: grid;
    gap: 1rem;
}

.legal-grid article {
    padding: 1.15rem;
}

.legal-grid p {
    color: var(--muted);
}

.site-footer {
    margin-top: 2rem;
    padding: 2rem .75rem 6rem;
    color: rgba(255, 255, 255, .84);
    background: var(--navy);
}

.footer-disclaimer {
    width: min(100%, var(--max));
    margin: 0 auto;
}

.footer-disclaimer {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
}

.sticky-cta {
    position: fixed;
    right: .75rem;
    bottom: .75rem;
    left: .75rem;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
    gap: .7rem;
    align-items: center;
    padding: .65rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 30px rgba(8, 47, 85, .18);
    backdrop-filter: blur(16px);
}

.sticky-cta span {
    color: var(--navy);
    font-size: .88rem;
    font-weight: 900;
}

.sticky-cta .btn {
    min-height: 42px;
    padding: .65rem .9rem;
    font-size: .82rem;
    white-space: normal;
}

@media (min-width: 720px) {
    .hero,
    .product,
    .vsl-box,
    .fit,
    .legal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .icon-grid,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .check-list,
    .outcome-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .check-item {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: 0 10px 28px rgba(6, 59, 109, .06);
    }

    .inside-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bonus-grid,
    .human-note {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .human-note {
        width: min(100% - 2.5rem, 980px);
        gap: 2.5rem;
        padding: 4.5rem 3.2rem;
    }

    .offer-card {
        padding: 2rem;
    }

    .sticky-cta {
        right: 1.25rem;
        left: auto;
        width: 390px;
    }
}

@media (min-width: 980px) {
    .section {
        padding: 5.2rem 0;
    }

    .human-note {
        width: min(100% - 5rem, 980px);
    }

    .hero {
        min-height: 100vh;
        padding-top: 1.5rem;
    }

    .hero-media img {
        padding: 1rem;
    }

    .hero-media .guarantee-seal {
        right: 1.1rem;
        bottom: 1.1rem;
        width: 150px;
    }

    .icon-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .btn-wide {
        width: auto;
        min-width: 360px;
    }

    .site-footer {
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .vsl {
        width: min(100% - .9rem, var(--max));
    }

    .vsl-box {
        gap: .75rem;
        padding: .65rem;
        border-radius: 20px;
    }

    .video-frame {
        min-height: 190px;
        border-radius: 16px;
    }

    .vsl-copy {
        padding: .95rem .55rem .75rem;
    }

    .vsl-copy .eyebrow {
        font-size: .68rem;
        line-height: 1.2;
    }

    .vsl-copy h2 {
        font-size: 1.45rem;
        line-height: 1.14;
    }

    .vsl-copy p {
        font-size: .96rem;
        line-height: 1.55;
    }

    .vsl-copy .btn {
        width: 100%;
        min-height: 48px;
        padding-inline: .85rem;
        white-space: normal;
    }

    .countdown {
        padding: .85rem;
    }

    .countdown-grid strong {
        font-size: 1.22rem;
    }

    .sticky-cta {
        gap: .45rem;
    }

    .sticky-cta span {
        font-size: .76rem;
    }

    .sticky-cta .btn {
        padding-inline: .75rem;
        font-size: .74rem;
    }
}

@media (max-width: 360px) {
    .vsl-copy h2 {
        font-size: 1.28rem;
    }

    .vsl-copy p {
        font-size: .9rem;
    }
}
