:root {
    --bg: #5b0f1b;
    --ink: #2b0b12;
    --green: #9f2438;
    --green-dark: #7b1829;
    --yellow: #ffe5b8;
    --pink: #e94e68;
    --plum: #2a0710;
    --cream: #fff4e8;
    --soft: rgba(255, 244, 232, 0.72);
    --shadow: 0 24px 70px rgba(42, 7, 16, 0.24);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 8%, rgba(233, 78, 104, 0.32), transparent 28%),
        linear-gradient(180deg, #6f1424 0%, #4d0c18 46%, #2a0710 100%);
    color: white;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

main,
.site-header {
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 64px);
    border-bottom: 1px solid rgba(255, 244, 232, 0.16);
    background: rgba(91, 15, 27, 0.72);
    backdrop-filter: blur(18px);
}

.brand {
    color: white;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 950;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 20px;
    font-size: 15px;
    font-weight: 800;
}

.nav a,
.header-cta,
.button,
.phone-screen a {
    text-decoration: none;
}

.header-cta {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius);
    background: var(--pink);
    box-shadow: 0 12px 30px rgba(233, 78, 104, 0.28);
    color: white;
    font-weight: 900;
}

.hero {
    display: grid;
    grid-template-areas:
        "copy preview"
        "actions preview";
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
    align-items: center;
    column-gap: clamp(28px, 5vw, 64px);
    row-gap: 0;
    min-height: calc(92vh - 76px);
    padding: clamp(38px, 6vw, 74px) clamp(18px, 6vw, 84px) clamp(32px, 5vw, 58px);
    background: var(--bg);
    color: white;
    overflow: visible;
}

.hero-copy {
    grid-area: copy;
    max-width: 680px;
    align-self: end;
}

.promo-pill,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(255, 229, 184, 0.18);
    box-shadow: none;
    backdrop-filter: blur(14px);
    color: var(--ink);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.promo-pill {
    padding: 9px 13px;
}

.hero .promo-pill {
    border: 2px solid rgba(255, 244, 232, 0.92);
    background: var(--cream);
    box-shadow: 0 10px 28px rgba(255, 229, 184, 0.22);
    color: var(--ink);
    font-size: 14px;
    animation: promoBlink 1.25s steps(2, end) infinite;
}

.section-kicker {
    padding: 8px 12px;
    background: rgba(233, 78, 104, 0.22);
    color: white;
}

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

h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(42px, 5.8vw, 76px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 950;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 950;
}

h3 {
    margin-bottom: 8px;
    font-size: 21px;
}

.lead {
    max-width: 640px;
    margin-bottom: 0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.hero-actions {
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    align-self: start;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(233, 78, 104, 0.24);
    color: white;
    font-size: 16px;
    font-weight: 950;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.header-cta:hover,
.phone-screen a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(233, 78, 104, 0.34);
}

.button-primary {
    background: var(--pink);
}

.button-secondary {
    background: var(--plum);
    color: white;
}

.phone-preview {
    grid-area: preview;
    width: min(360px, 100%);
    justify-self: center;
    border: 1px solid rgba(255, 244, 232, 0.28);
    border-radius: 34px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: var(--shadow);
    padding: 13px;
}

.phone-top {
    width: 86px;
    height: 8px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: #343434;
}

.phone-screen {
    min-height: 545px;
    padding: 26px 22px;
    border: 1px solid rgba(255, 244, 232, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(23, 11, 18, 0.72), rgba(23, 11, 18, 0.94)),
        radial-gradient(circle at 82% 18%, rgba(232, 71, 99, 0.42), transparent 27%),
        linear-gradient(135deg, #4b0d1a, #16060b);
    color: white;
}

.preview-label {
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.phone-screen h2 {
    max-width: 300px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3.2vw, 40px);
}

.phone-screen p:not(.preview-label) {
    max-width: 280px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.6;
}

.mini-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 28px 0;
}

.mini-preview-grid span {
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.12);
}

.phone-screen a {
    display: inline-flex;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 0 14px 34px rgba(233, 78, 104, 0.36);
    color: white;
    font-weight: 950;
}

.steps-band,
.promo-section,
.romance-chat-section,
.checkout-section,
.why-section,
.testimonial-section,
.faq-section,
.final-cta {
    margin: 0 clamp(18px, 6vw, 84px);
}

.romance-chat-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
    gap: clamp(18px, 4vw, 46px);
    align-items: center;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid rgba(255, 244, 232, 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.romance-chat-section {
    margin-top: clamp(18px, 3vw, 34px);
    background: var(--soft);
    background-clip: padding-box;
    color: var(--ink);
    backdrop-filter: blur(18px);
    clip-path: inset(0 round var(--radius));
    contain: paint;
    isolation: isolate;
}

.romance-chat-section .section-kicker {
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
}

.romance-chat-card,
.surprise-gallery {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 620px;
    justify-self: end;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: none;
}

.surprise-gallery {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.surprise-shot {
    position: absolute;
    inset: 0;
    display: none;
    opacity: 0;
}

.surprise-shot.is-active {
    display: grid;
    animation: testimonialFadeIn 650ms ease both;
}

.surprise-shot.is-leaving {
    display: grid;
    animation: testimonialFadeOut 650ms ease both;
    pointer-events: none;
}

.surprise-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 22px 52px rgba(43, 11, 18, 0.16);
}

.shot-label {
    width: fit-content;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(43, 11, 18, 0.08);
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

.shot-phone {
    display: grid;
    align-content: end;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-height: 340px;
    padding: 22px;
    border: 1px solid rgba(43, 11, 18, 0.08);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 246, 239, 0.88), rgba(255, 222, 229, 0.86)),
        radial-gradient(circle at 18% 14%, rgba(233, 78, 104, 0.18), transparent 26%);
    box-shadow: 0 22px 52px rgba(43, 11, 18, 0.16);
}

.shot-message,
.shot-link {
    width: fit-content;
    max-width: min(430px, 100%);
    margin: 0;
    padding: 12px 14px;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(43, 11, 18, 0.1);
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.shot-message.sent,
.shot-link {
    justify-self: end;
    background: var(--pink);
    color: white;
}

.shot-message.reply {
    justify-self: start;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
}

.shot-link {
    display: grid;
    gap: 5px;
}

.shot-link strong {
    overflow-wrap: anywhere;
}

.shot-link span {
    font-size: 14px;
    opacity: 0.86;
}

.chat-line,
.chat-link-card {
    border: 1px solid rgba(43, 11, 18, 0.12);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(43, 11, 18, 0.12);
    font-weight: 850;
    line-height: 1.45;
}

.chat-line {
    width: fit-content;
    max-width: min(470px, 100%);
    padding: 12px 14px;
}

.chat-sent {
    justify-self: end;
    background: var(--pink);
    color: white;
}

.chat-reply {
    justify-self: start;
    background: rgba(255, 255, 255, 0.78);
}

.chat-link-card {
    display: grid;
    gap: 6px;
    width: min(460px, 100%);
    justify-self: end;
    padding: 14px;
    background: var(--plum);
    color: white;
}

.chat-link-card span {
    font-size: 14px;
    font-weight: 800;
}

.checkout-section {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
    gap: clamp(22px, 5vw, 72px);
    align-items: start;
    margin-top: clamp(48px, 7vw, 88px);
    margin-bottom: clamp(56px, 8vw, 104px);
    padding: 0 clamp(8px, 2vw, 18px);
    background: transparent;
}

.checkout-section h2 {
    max-width: 560px;
    margin-bottom: 0;
}

.checkout-section .section-kicker {
    background: var(--yellow);
    color: var(--ink);
}

.checkout-copy {
    max-width: 760px;
    justify-self: end;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: none;
}

.checkout-copy p {
    font-size: 19px;
    font-weight: 850;
    line-height: 1.55;
}

.checkout-copy .button {
    margin-top: 12px;
    background: var(--pink);
}

.promo-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(210px, 0.5fr) auto;
    gap: clamp(20px, 4vw, 36px);
    align-items: center;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(255, 244, 232, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 244, 232, 0.9), rgba(255, 214, 223, 0.82)),
        var(--soft);
    color: var(--ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.promo-section .section-kicker {
    background: rgba(255, 255, 255, 0.58);
    color: var(--ink);
}

.promo-section h2 {
    margin-bottom: 12px;
}

.promo-note {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(43, 11, 18, 0.74);
    font-size: 17px;
    line-height: 1.6;
}

.price-box {
    position: relative;
    display: grid;
    gap: 7px;
    justify-items: start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 16px 36px rgba(43, 11, 18, 0.12);
}

.old-price {
    font-size: 18px;
    font-weight: 950;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    color: rgba(43, 11, 18, 0.58);
}

.price-box strong {
    color: var(--pink);
    font-size: clamp(56px, 6vw, 86px);
    line-height: 0.92;
}

.discount {
    font-size: 15px;
    font-weight: 950;
}

.slot-badge {
    position: absolute;
    top: -14px;
    right: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--plum);
    color: white;
    font-size: 13px;
    font-weight: 950;
}

.steps-band {
    margin-top: clamp(44px, 6vw, 76px);
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    padding: 26px;
    border: 1px solid rgba(255, 244, 232, 0.28);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

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

.steps article,
.benefit-grid article,
.faq-list details {
    border: 1px solid rgba(43, 11, 18, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
}

.steps article {
    padding: 18px;
}

.steps span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border: 0;
    border-radius: 50%;
    background: var(--pink);
    color: white;
    font-weight: 950;
}

.steps p,
.benefit-grid p,
.faq-list p {
    margin-bottom: 0;
    line-height: 1.55;
}

.why-section,
.testimonial-section,
.faq-section,
.final-cta {
    padding-top: clamp(64px, 8vw, 104px);
}

.why-section > h2,
.testimonial-section > h2,
.faq-section > h2 {
    max-width: 820px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.benefit-grid article {
    padding: 22px;
    box-shadow: 0 16px 34px rgba(43, 11, 18, 0.14);
    color: var(--ink);
}

.section-subtext {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-stage {
    position: relative;
    width: 100%;
    max-width: 820px;
    min-height: 260px;
    margin-right: auto;
    margin-left: auto;
}

.chat-testimonial {
    display: none;
    width: 100%;
    padding: clamp(18px, 4vw, 30px);
    border: 1px solid rgba(255, 244, 232, 0.28);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
}

.chat-testimonial.is-active {
    display: block;
    animation: testimonialFadeIn 650ms ease both;
}

.chat-testimonial.is-leaving {
    position: absolute;
    inset: 0 auto auto 0;
    display: block;
    animation: testimonialFadeOut 650ms ease both;
    pointer-events: none;
}

.chat-testimonial img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(43, 11, 18, 0.12);
    border-radius: var(--radius);
}

.chat-name {
    margin-bottom: 14px;
    font-weight: 950;
}

.wa-chat {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.wa-chat p {
    width: fit-content;
    max-width: min(620px, 100%);
    margin: 0;
    padding: 12px 14px;
    border: 0;
    border-radius: 20px;
    background: #ffd6df;
    box-shadow: 0 10px 24px rgba(43, 11, 18, 0.12);
    line-height: 1.5;
}

.chat-testimonial span {
    display: inline-flex;
    padding: 8px 10px;
    border: 0;
    border-radius: 999px;
    background: var(--plum);
    color: white;
    font-size: 13px;
    font-weight: 950;
}

@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes testimonialFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes promoBlink {
    0%,
    100% {
        background: var(--cream);
        color: var(--ink);
        transform: translateY(0);
        box-shadow: 0 10px 28px rgba(255, 229, 184, 0.22);
    }

    50% {
        background: var(--yellow);
        color: var(--ink);
        transform: translateY(-1px);
        box-shadow: 0 0 0 4px rgba(255, 229, 184, 0.2), 0 12px 30px rgba(255, 229, 184, 0.3);
    }
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin-top: 24px;
}

.faq-section {
    text-align: center;
}

.faq-section .section-kicker,
.faq-section > h2,
.faq-list {
    margin-right: auto;
    margin-left: auto;
}

.faq-list {
    text-align: left;
}

.faq-list details {
    padding: 18px 20px;
    color: var(--ink);
    box-shadow: 0 14px 30px rgba(43, 11, 18, 0.12);
}

.faq-list summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 950;
}

.faq-list p {
    padding-top: 12px;
}

.final-cta {
    margin-top: clamp(64px, 8vw, 108px);
    margin-bottom: 44px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(255, 244, 232, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 244, 232, 0.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.final-cta h2 {
    max-width: 860px;
}

.final-cta .promo-pill {
    background: rgba(255, 255, 255, 0.16);
}

.final-cta .button-primary {
    background: var(--pink);
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 6vw, 84px);
    border-top: 1px solid rgba(255, 244, 232, 0.16);
    font-weight: 800;
}

.testimonial-section,
.nav-testimonial-link {
    display: none !important;
}

.reveal-item {
    opacity: 0;
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(-46px);
}

.reveal-right {
    transform: translateX(46px);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.empty-screenshot {
    display: grid;
    place-items: center;
    min-height: 360px;
    border: 2px dashed rgba(43, 11, 18, 0.2);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 214, 223, 0.48)),
        rgba(255, 255, 255, 0.46);
    color: rgba(43, 11, 18, 0.5);
    font-weight: 950;
}

.empty-screenshot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
    object-fit: cover;
}

@media (max-width: 920px) {
    .site-header {
        grid-template-columns: 1fr auto;
        justify-items: start;
        text-align: left;
    }

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero,
    .promo-section,
    .romance-chat-section,
    .checkout-section,
    .steps-band,
    .steps,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        grid-template-areas:
            "copy"
            "preview"
            "actions";
        min-height: auto;
        row-gap: 24px;
    }

    .hero-copy,
    .romance-chat-section,
    .checkout-section,
    .promo-section,
    .steps-band,
    .why-section,
    .testimonial-section,
    .faq-section,
    .final-cta {
        text-align: center;
    }

    .promo-pill,
    .section-kicker {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .phone-preview {
        justify-self: center;
    }

    .romance-chat-card,
    .surprise-gallery,
    .checkout-copy {
        justify-self: center;
    }

    .promo-section {
        align-items: center;
    }

    .price-box {
        justify-self: center;
        justify-items: center;
        text-align: center;
    }

    .steps span {
        margin-right: auto;
        margin-left: auto;
    }

    .benefit-grid article {
        text-align: center;
    }

    .faq-list {
        text-align: center;
    }

    [data-mobile-text] {
        font-size: 0;
    }

    [data-mobile-text]::before {
        content: attr(data-mobile-text);
        font-size: inherit;
    }

    h1[data-mobile-text]::before {
        font-size: clamp(31px, 9vw, 40px);
    }

    h2[data-mobile-text]::before {
        font-size: clamp(25px, 7.6vw, 34px);
    }

    p[data-mobile-text]::before {
        font-size: 15px;
        font-weight: 400;
    }

    .lead,
    .checkout-copy p,
    .section-subtext {
        font-weight: 400;
    }

    .checkout-copy p:not(.mobile-keep),
    .checkout-button {
        display: none;
    }
}

@media (max-width: 560px) {
    :root {
        --shadow: 0 18px 46px rgba(42, 7, 16, 0.24);
    }

    .site-header {
        position: relative;
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 14px 16px;
        gap: 0;
        text-align: left;
    }

    .brand {
        font-size: 18px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        row-gap: 20px;
        padding: 28px 16px 22px;
    }

    h1 {
        margin-bottom: 14px;
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.04;
    }

    h2 {
        font-size: clamp(25px, 7.6vw, 34px);
        line-height: 1.08;
    }

    [data-mobile-text] {
        font-size: 0;
    }

    [data-mobile-text]::before {
        content: attr(data-mobile-text);
        font-size: inherit;
    }

    h1[data-mobile-text]::before {
        font-size: clamp(31px, 9vw, 40px);
    }

    h2[data-mobile-text]::before {
        font-size: clamp(25px, 7.6vw, 34px);
    }

    p[data-mobile-text]::before {
        font-size: 15px;
        font-weight: 400;
    }

    .lead {
        max-width: 335px;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.48;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .hero-actions {
        margin-top: 0;
    }

    .button {
        min-height: 52px;
        max-width: 335px;
        margin-right: auto;
        margin-left: auto;
    }

    .phone-preview {
        width: min(315px, 100%);
        justify-self: center;
        padding: 10px;
    }

    .phone-top {
        margin-bottom: 10px;
    }

    .phone-screen {
        display: grid;
        justify-items: center;
        min-height: 380px;
        padding: 22px 18px;
        border-radius: 22px;
        text-align: center;
    }

    .phone-screen h2 {
        font-size: 28px;
    }

    .phone-screen p:not(.preview-label) {
        max-width: 245px;
        font-size: 15px;
    }

    .mini-preview-grid {
        margin: 22px 0;
    }

    .surprise-gallery {
        min-height: 310px;
    }

    .shot-phone {
        min-height: 260px;
        padding: 18px;
    }

    .shot-message,
    .shot-link,
    .wa-chat p {
        max-width: 100%;
        font-size: 14px;
    }

    .shot-label {
        margin-right: auto;
        margin-left: auto;
    }

    .shot-message.sent,
    .shot-link {
        justify-self: end;
        text-align: left;
    }

    .shot-message.reply {
        justify-self: start;
        text-align: left;
    }

    .steps-band,
    .promo-section,
    .romance-chat-section,
    .checkout-section,
    .why-section,
    .testimonial-section,
    .faq-section,
    .final-cta {
        margin-right: 16px;
        margin-left: 16px;
    }

    .romance-chat-section,
    .checkout-section {
        gap: 18px;
    }

    .checkout-section {
        margin-top: 38px;
        margin-bottom: 48px;
        padding: 0;
    }

    .checkout-copy p {
        max-width: 335px;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.5;
    }

    .checkout-copy p:not(.mobile-keep) {
        display: none;
    }

    .checkout-button {
        display: none;
    }

    .steps-band,
    .promo-section,
    .romance-chat-section,
    .final-cta {
        padding: 18px;
    }

    .promo-section {
        gap: 24px;
    }

    .promo-note {
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
    }

    .price-box {
        width: 100%;
        padding: 18px;
    }

    .price-box strong {
        font-size: clamp(52px, 17vw, 72px);
    }

    .slot-badge {
        right: 14px;
    }

    .steps-band {
        gap: 18px;
    }

    .steps {
        gap: 12px;
    }

    .benefit-grid article,
    .faq-list details {
        padding: 18px;
    }

    .section-subtext {
        max-width: 335px;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.48;
    }

    .testimonial-stage {
        min-height: 275px;
    }

    .chat-testimonial {
        padding: 18px;
    }

    .empty-screenshot {
        min-height: 235px;
        border-radius: 20px;
    }

    .why-section,
    .testimonial-section,
    .faq-section,
    .final-cta {
        padding-top: 58px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
    }
}

@media (max-width: 380px) {
    .brand {
        font-size: 16px;
    }

    .header-cta {
        padding: 8px 10px;
        font-size: 13px;
    }

    h1 {
        font-size: 32px;
    }

    .promo-pill,
    .section-kicker {
        font-size: 11px;
    }

    .hero .promo-pill {
        font-size: 12px;
        line-height: 1.25;
    }

    .phone-preview {
        width: 100%;
    }

    .phone-screen {
        min-height: 360px;
    }

    .surprise-gallery {
        min-height: 305px;
    }

    .shot-phone {
        min-height: 250px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero .promo-pill,
    .surprise-shot.is-active,
    .surprise-shot.is-leaving,
    .chat-testimonial.is-active,
    .chat-testimonial.is-leaving {
        animation: none;
    }

    .reveal-item,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 920px) {
    [data-mobile-text] {
        font-size: 0 !important;
    }

    .phone-screen [data-mobile-text] {
        font-size: inherit !important;
    }

    [data-mobile-text]::before {
        content: attr(data-mobile-text);
        color: inherit;
        font-weight: inherit;
    }

    .phone-screen [data-mobile-text]::before {
        content: none;
    }

    h1[data-mobile-text]::before {
        font-size: clamp(31px, 9vw, 40px);
    }

    h2[data-mobile-text]::before {
        font-size: clamp(25px, 7.6vw, 34px);
    }

    p[data-mobile-text]::before {
        font-size: 15px;
        font-weight: 400;
    }

    .phone-screen h2[data-mobile-text]::before {
        font-size: 28px;
    }

    .hero-actions .button-secondary {
        display: inline-flex;
    }

    .phone-screen a {
        display: inline-flex;
    }

    .phone-preview {
        width: min(270px, 100%);
    }

    .phone-screen {
        display: block;
        min-height: 408px;
        padding: 22px 16px;
        text-align: left;
    }

    .phone-screen h2 {
        max-width: 218px;
        font-size: 30px;
        line-height: 1.02;
    }

    .phone-screen p:not(.preview-label) {
        max-width: 218px;
        font-size: 14px;
        line-height: 1.45;
    }

    .mini-preview-grid {
        gap: 7px;
        margin: 22px 0;
    }

    .mini-preview-grid span {
        border-radius: 8px;
    }

    .phone-screen a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .promo-pill,
    .section-kicker,
    .header-cta,
    .button,
    .phone-screen a,
    .shot-label,
    .slot-badge,
    .chat-testimonial span {
        border-radius: 14px;
    }

    .phone-preview {
        border-radius: 22px;
    }

    .phone-screen,
    .shot-phone,
    .empty-screenshot {
        border-radius: 16px;
    }

    .romance-chat-section,
    .promo-section,
    .steps-band,
    .final-cta,
    .chat-testimonial,
    .steps article,
    .benefit-grid article,
    .faq-list details,
    .price-box {
        border-radius: 14px;
    }

    .faq-section {
        color: #111111;
    }

    .faq-section .section-kicker {
        background: #ffffff;
        color: #111111;
        border-color: rgba(17, 17, 17, 0.16);
    }

    .faq-section > h2 {
        color: #111111;
    }

    .faq-list details {
        background: #ffffff;
        color: #111111;
        border-color: rgba(17, 17, 17, 0.12);
    }

    .faq-list summary,
    .faq-list p {
        color: #111111;
    }

    .benefit-grid article {
        background: #ffffff;
        color: #111111;
        border-color: rgba(17, 17, 17, 0.12);
    }

    .benefit-grid h3,
    .benefit-grid p {
        color: #111111;
    }
}

@media (max-width: 920px) {
    .phone-preview {
        width: 270px !important;
        max-width: calc(100vw - 32px);
        padding: 10px !important;
    }

    .phone-screen {
        display: block !important;
        min-height: 0 !important;
        padding: 22px 16px 30px !important;
        text-align: left !important;
    }

    .preview-label {
        display: block !important;
        width: 100% !important;
        margin-bottom: 13px !important;
        font-size: 9px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .phone-screen h2 {
        max-width: 218px !important;
        margin-bottom: 16px !important;
        font-size: 36px !important;
        line-height: 1.03 !important;
    }

    .phone-screen p:not(.preview-label) {
        max-width: 218px !important;
        font-size: 10px !important;
        line-height: 1.48 !important;
    }

    .mini-preview-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
        width: 100% !important;
        max-width: 218px !important;
        margin: 22px 0 20px !important;
    }

    .mini-preview-grid span {
        display: block !important;
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        min-height: 66px !important;
        border-radius: 10px !important;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05)),
            rgba(255, 255, 255, 0.14) !important;
    }

    .phone-screen a {
        display: none !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 920px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body,
    .site-header,
    main,
    .hero {
        max-width: 100vw;
    }

    .hero {
        overflow-x: hidden;
        overflow-y: visible;
    }

    .hero-actions .button-secondary {
        display: inline-flex !important;
    }

    .faq-section > h2 {
        color: #ffffff !important;
    }
}
