:root {
    --bg: #fff9f5;
    --ink: #241b1e;
    --muted: #6f6266;
    --primary: #7a2f43;
    --primary-ink: #fff;
    --rose: #f5c0c8;
    --peach: #ffb36c;
    --mint: #d8efe5;
    --line: #eaded8;
    --panel: #fff;
    --shadow: 0 18px 50px rgba(64, 36, 40, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.45;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.marketing-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 44px);
    background: rgba(255, 249, 245, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.marketing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 900;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 8px;
    background: var(--primary);
    color: var(--primary-ink);
}

.marketing-nav nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.marketing-nav nav a {
    border-radius: 8px;
    padding: 9px 11px;
    color: var(--muted);
    font-weight: 800;
}

.marketing-nav nav a:hover,
.nav-login {
    background: #f2e7e2;
    color: var(--primary);
}

.marketing-hero,
.section,
.pain-band,
.marketing-footer {
    padding-inline: clamp(16px, 5vw, 64px);
}

.marketing-hero {
    display: grid;
    min-height: calc(100svh - 64px);
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    padding-block: clamp(36px, 7vw, 78px);
}

.product-hero {
    background:
        radial-gradient(circle at 92% 22%, rgba(255, 179, 108, .18), transparent 24%),
        linear-gradient(180deg, #fff9f5 0%, #fff3eb 100%);
}

.affiliate-hero {
    background:
        radial-gradient(circle at 82% 22%, rgba(216, 239, 229, .7), transparent 28%),
        linear-gradient(180deg, #fff9f5 0%, #f8f6ef 100%);
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 12ch;
    margin-bottom: 18px;
    font-size: clamp(3rem, 9vw, 6.7rem);
    line-height: .95;
}

h2 {
    max-width: 15ch;
    margin-bottom: 14px;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 1;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.hero-copy p {
    max-width: 62ch;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 900;
}

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

.button.secondary {
    background: #f1e6e1;
    color: var(--primary);
}

.trust-strip span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    padding: 7px 11px;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 800;
}

.hero-visual,
.affiliate-panel {
    position: relative;
    min-height: 520px;
}

.hero-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: min(54vw, 430px);
    max-width: 82%;
    filter: drop-shadow(0 24px 32px rgba(91, 42, 32, .2));
}

.phone-mock {
    position: absolute;
    top: 8%;
    left: 2%;
    width: min(330px, 74vw);
    border: 10px solid #2d2528;
    border-radius: 38px;
    background: #fffdfb;
    box-shadow: var(--shadow);
    padding: 18px;
}

.phone-top,
.mock-card {
    display: grid;
    gap: 6px;
    border-radius: 8px;
    padding: 14px;
}

.phone-top {
    background: #f5ede9;
}

.mock-card {
    margin-top: 12px;
    border: 1px solid var(--line);
    background: #fff;
}

.mock-card.active {
    background: var(--primary);
    color: var(--primary-ink);
}

.mock-card span,
.mock-card small,
.phone-top span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
}

.mock-card.active span,
.mock-card.active small {
    color: rgba(255, 255, 255, .78);
}

.mock-tabs {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 900;
}

.pain-band,
.section {
    padding-block: clamp(42px, 7vw, 80px);
}

.pain-band {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 24px;
    background: #fff;
    border-block: 1px solid var(--line);
}

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

.pain-grid article,
.steps article,
.audience-grid article,
.quote-box,
.script-box,
.pricing-card,
.faq-section details,
.affiliate-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.pain-grid article,
.audience-grid article,
.steps article {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.pain-grid span,
.audience-grid span,
.steps small,
.check-list,
.quote-box p,
.script-box p,
.pricing-card small,
.faq-section p {
    color: var(--muted);
}

.steps article span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 8px;
    background: var(--mint);
    color: #225740;
    font-weight: 900;
}

.section-heading {
    margin-bottom: 24px;
}

.split-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    gap: 24px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    position: absolute;
    left: 0;
    color: #2d7a5a;
    content: "✓";
    font-weight: 900;
}

.quote-box,
.script-box {
    padding: 22px;
}

.quote-box button,
.script-box button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: #f1e6e1;
    color: var(--primary);
    cursor: pointer;
    padding: 10px 13px;
    font-weight: 900;
}

.pricing-section {
    background: #fff;
}

.pricing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
}

.pricing-card div {
    display: grid;
    gap: 6px;
}

.pricing-card span {
    color: var(--primary);
    font-weight: 900;
}

.pricing-card strong {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
}

.faq-section {
    display: grid;
    gap: 12px;
}

.faq-section .section-heading {
    margin-bottom: 6px;
}

.faq-section details {
    padding: 16px 18px;
}

.faq-section summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-section p {
    margin: 10px 0 0;
}

.affiliate-panel {
    display: grid;
    align-content: center;
    gap: 16px;
    min-height: 420px;
    padding: 28px;
}

.affiliate-panel img {
    width: min(320px, 72vw);
    justify-self: center;
}

.affiliate-panel strong {
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 1.05;
}

.affiliate-panel p {
    color: var(--muted);
}

.marketing-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-block: 20px;
    background: #fff;
    color: var(--muted);
    font-weight: 800;
}

@media (max-width: 860px) {
    .marketing-hero,
    .pain-band,
    .split-band {
        grid-template-columns: 1fr;
    }

    .marketing-hero {
        min-height: auto;
    }

    .hero-visual,
    .affiliate-panel {
        min-height: 430px;
    }

    .pain-grid,
    .steps,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .marketing-nav {
        align-items: flex-start;
    }

    .marketing-brand span:last-child {
        max-width: 132px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .marketing-nav nav {
        gap: 2px;
    }

    .marketing-nav nav a {
        padding: 8px 7px;
        font-size: .86rem;
    }

    h1 {
        font-size: clamp(2.8rem, 16vw, 4.4rem);
    }

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

    .phone-mock {
        left: 0;
    }

    .hero-icon {
        width: 74vw;
    }
}
