:root {
    --sales-bg: #fff8f5;
    --sales-bg-soft: #fff2ed;
    --sales-surface: #ffffff;
    --sales-primary: #9b7ede;
    --sales-primary-strong: #6f55c8;
    --sales-coral: #ff8e7e;
    --sales-text: #2e2a35;
    --sales-muted: #7b7485;
    --sales-border: rgba(46, 42, 53, 0.08);
    --sales-shadow: 0 12px 30px rgba(46, 42, 53, 0.06);
    --sales-shadow-soft: 0 8px 18px rgba(46, 42, 53, 0.04);
    --sales-shadow-premium: 0 16px 36px rgba(155, 126, 222, 0.22);
}

html[data-theme="dark"] body.sales-light-only {
    --sales-bg: #fff8f5;
    --sales-bg-soft: #fff2ed;
    --sales-surface: #ffffff;
    --sales-primary: #9b7ede;
    --sales-primary-strong: #6f55c8;
    --sales-coral: #ff8e7e;
    --sales-text: #2e2a35;
    --sales-muted: #7b7485;
    --sales-border: rgba(46, 42, 53, 0.08);
    --sales-shadow: 0 12px 30px rgba(46, 42, 53, 0.06);
    --sales-shadow-soft: 0 8px 18px rgba(46, 42, 53, 0.04);
    --sales-shadow-premium: 0 16px 36px rgba(155, 126, 222, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    color-scheme: light;
}

body.sales-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--sales-text);
    background: linear-gradient(180deg, var(--sales-bg) 0%, var(--sales-bg-soft) 100%);
    line-height: 1.45;
}

a {
    color: inherit;
}

.sales-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.sales-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--sales-bg) 90%, transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid color-mix(in srgb, var(--sales-border) 90%, transparent);
}

.sales-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #bda7ff 0%, #f3a6c8 50%, #ff9a8b 100%);
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
}

.sales-nav {
    display: none;
    align-items: center;
    gap: 18px;
}

.sales-nav a {
    text-decoration: none;
    color: var(--sales-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.sales-nav a:hover,
.sales-nav a:focus-visible {
    color: var(--sales-primary);
}

.button {
    border: 0;
    border-radius: 999px;
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button-primary {
    background: var(--sales-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(155, 126, 222, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--sales-primary-strong);
    transform: translateY(-1px);
}

.button-secondary {
    background: #fff;
    color: var(--sales-primary-strong);
    border: 1px solid color-mix(in srgb, var(--sales-primary) 36%, var(--sales-border));
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: color-mix(in srgb, #fff 84%, var(--sales-primary) 16%);
}

.button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.86rem;
}

.hero {
    padding: 38px 0 28px;
}

.hero-grid {
    display: grid;
    gap: 24px;
}

.hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 6vw, 3.1rem);
    line-height: 1.07;
}

.hero-subtitle {
    margin: 0 0 16px;
    font-size: 1.05rem;
    color: var(--sales-muted);
    max-width: 560px;
}

.cta-row {
    display: grid;
    gap: 10px;
}

.hero-note {
    margin: 12px 0 6px;
    color: var(--sales-muted);
    font-size: 0.9rem;
}

.hero-proof {
    margin: 0;
    color: var(--sales-muted);
    font-size: 0.82rem;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-a {
    width: 180px;
    height: 180px;
    background: rgba(155, 126, 222, 0.22);
    top: -8px;
    right: 20px;
}

.hero-glow-b {
    width: 150px;
    height: 150px;
    background: rgba(255, 142, 126, 0.2);
    bottom: 8px;
    left: 12px;
}

.device-mock {
    margin: 0 auto;
    width: min(360px, 100%);
    border-radius: 40px;
    background: var(--sales-surface);
    border: 1px solid color-mix(in srgb, var(--sales-primary) 25%, var(--sales-border));
    box-shadow: var(--sales-shadow);
    padding: 12px;
    position: relative;
    z-index: 1;
}

.device-shell {
    border-radius: 30px;
    padding: 14px;
    background: linear-gradient(180deg, #fff7f3 0%, #fff 100%);
}

.device-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--sales-muted);
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.device-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--sales-primary);
}

.device-notch {
    width: 58px;
    height: 12px;
    border-radius: 999px;
    background: #f1eafe;
    border: 1px solid rgba(155, 126, 222, 0.26);
}

.device-cycle-card {
    border-radius: 24px;
    padding: 14px;
    background: linear-gradient(135deg, #bda7ff 0%, #f3a6c8 50%, #ff9a8b 100%);
    color: #fff;
    margin-bottom: 10px;
}

.device-cycle-card p {
    margin: 0;
}

.device-meta {
    font-size: 0.74rem;
    opacity: 0.92;
}

.device-day {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 800;
    margin: 4px 0 8px;
}

.device-phase {
    font-size: 0.84rem;
}

.device-next {
    font-size: 0.77rem;
    margin-top: 8px;
    opacity: 0.95;
}

.device-progress {
    margin-top: 8px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.device-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #fff;
}

.device-mini-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.device-mini {
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--sales-border);
    padding: 8px;
    display: grid;
    gap: 2px;
}

.device-mini strong {
    font-size: 0.78rem;
}

.device-mini span {
    font-size: 0.74rem;
    color: var(--sales-muted);
}

.section {
    padding: 34px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.55);
}

.section-head {
    margin-bottom: 16px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.45rem, 4vw, 2rem);
    line-height: 1.14;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--sales-muted);
    max-width: 560px;
}

.steps-grid {
    display: grid;
    gap: 10px;
}

.step-item {
    background: #fff;
    border: 1px solid var(--sales-border);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--sales-shadow-soft);
}

.step-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--sales-primary) 14%, #fff);
    border: 1px solid color-mix(in srgb, var(--sales-primary) 28%, var(--sales-border));
    color: var(--sales-primary-strong);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.step-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--sales-muted);
}

.screen-grid {
    display: grid;
    gap: 12px;
}

.screen-card {
    background: #fff;
    border: 1px solid var(--sales-border);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--sales-shadow-soft);
}

.screen-shot {
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--sales-primary) 16%, var(--sales-border));
    background: #fff;
    padding: 10px;
    min-height: 138px;
    margin-bottom: 10px;
}

.shot-top {
    color: var(--sales-muted);
    font-size: 0.76rem;
    margin-bottom: 8px;
}

.shot-gradient {
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #bda7ff 0%, #f3a6c8 50%, #ff9a8b 100%);
}

.shot-pill-row {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.shot-pill-row span {
    width: 48%;
    height: 18px;
    border-radius: 999px;
    border: 1px solid var(--sales-border);
    background: #fff;
}

.shot-cta {
    width: 55%;
    height: 22px;
    border-radius: 999px;
    margin-top: 8px;
    background: #9b7ede;
}

.shot-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.shot-grid span {
    height: 14px;
    border-radius: 6px;
    background: #f8f3fd;
}

.shot-grid span.active {
    border: 1px solid #9b7ede;
    background: #f1eafe;
}

.shot-grid span.period {
    background: #ffe8e2;
}

.shot-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 7px;
}

.shot-chip-row span {
    min-height: 20px;
    border-radius: 999px;
    border: 1px solid var(--sales-border);
    background: #fff;
    padding: 2px 8px;
    font-size: 0.68rem;
    color: var(--sales-muted);
    display: inline-flex;
    align-items: center;
}

.shot-chip-row span.on {
    background: #f1eafe;
    border-color: #9b7ede;
    color: var(--sales-primary-strong);
    font-weight: 700;
}

.shot-line {
    height: 10px;
    border-radius: 999px;
    background: #f8f3fd;
}

.shot-card {
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f4edff 0%, #fff3ef 100%);
    border: 1px solid rgba(155, 126, 222, 0.24);
    margin-bottom: 8px;
}

.shot-card.light {
    background: #fff;
    border: 1px solid var(--sales-border);
}

.shot-badge {
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(155, 126, 222, 0.3);
    background: #f1eafe;
    color: #6f55c8;
    padding: 3px 8px;
    font-size: 0.66rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.screen-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.screen-card p {
    margin: 0;
    color: var(--sales-muted);
    font-size: 0.9rem;
}

.benefit-grid {
    display: grid;
    gap: 10px;
}

.benefit-item {
    background: #fff;
    border: 1px solid var(--sales-border);
    border-radius: 18px;
    padding: 12px;
}

.benefit-item h3 {
    margin: 0 0 4px;
    font-size: 0.98rem;
}

.benefit-item p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--sales-muted);
}

.mini-ui {
    border: 1px solid var(--sales-border);
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    margin-bottom: 8px;
}

.mini-report,
.mini-list {
    display: grid;
    gap: 6px;
}

.mini-report span,
.mini-list span {
    display: flex;
    align-items: center;
    min-height: 20px;
    border-radius: 8px;
    padding: 0 8px;
    font-size: 0.68rem;
    color: var(--sales-muted);
    background: #faf8fd;
}

.mini-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mini-chips span {
    border-radius: 999px;
    border: 1px solid rgba(155, 126, 222, 0.24);
    background: #f4eefc;
    color: #6f55c8;
    font-size: 0.68rem;
    padding: 3px 8px;
    font-weight: 600;
}

.mini-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.mini-tabs span {
    min-height: 22px;
    border-radius: 8px;
    border: 1px solid var(--sales-border);
    background: #faf8fd;
    color: var(--sales-muted);
    font-size: 0.67rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-glance {
    border: 1px solid color-mix(in srgb, var(--sales-primary) 28%, var(--sales-border));
    border-radius: 28px;
    background: linear-gradient(165deg, #fff 0%, #fbf7ff 100%);
    box-shadow: var(--sales-shadow-premium);
    padding: 16px;
}

.premium-preview-card {
    border-radius: 20px;
    padding: 14px;
    background: linear-gradient(145deg, rgba(189, 167, 255, 0.2) 0%, rgba(243, 166, 200, 0.17) 52%, rgba(255, 154, 139, 0.18) 100%);
    border: 1px solid rgba(155, 126, 222, 0.25);
    margin-bottom: 12px;
}

.premium-kicker {
    margin: 0;
    color: var(--sales-primary-strong);
    font-size: 0.78rem;
    font-weight: 700;
}

.premium-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.premium-tag {
    border-radius: 999px;
    border: 1px solid rgba(111, 85, 200, 0.28);
    background: #f1eafe;
    color: #6f55c8;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 8px;
}

.locked-list {
    display: grid;
    gap: 6px;
}

.locked-list p {
    margin: 0;
    min-height: 28px;
    border-radius: 10px;
    border: 1px solid var(--sales-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 0.78rem;
    color: var(--sales-muted);
}

.locked-list strong {
    color: #6f55c8;
    font-size: 0.72rem;
}

.premium-preview-text {
    margin: 10px 0 10px;
    color: var(--sales-muted);
    font-size: 0.86rem;
}

.premium-inline-cta {
    width: 100%;
}

.plan-grid {
    display: grid;
    gap: 8px;
}

.plan-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--sales-border);
    border-radius: 16px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--sales-shadow-soft);
}

.plan-name {
    margin: 0 0 2px;
    font-size: 0.92rem;
    font-weight: 700;
}

.plan-price {
    margin: 0;
    font-size: 1.16rem;
    font-weight: 800;
}

.plan-note {
    margin: 4px 0 0;
    font-size: 0.78rem;
    color: var(--sales-muted);
}

.plan-savings {
    margin: 4px 0 0;
    font-size: 0.78rem;
    color: var(--sales-primary-strong);
    font-weight: 700;
}

.plan-card.best-value {
    border-color: color-mix(in srgb, var(--sales-primary) 60%, var(--sales-border));
    background: #f7f2ff;
    box-shadow: 0 14px 26px rgba(155, 126, 222, 0.24);
}

.best-pill {
    margin: 0 0 8px;
    display: inline-flex;
    border-radius: 999px;
    background: var(--sales-primary-strong);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
}

.premium-cta {
    width: 100%;
    margin-top: 10px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--sales-border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    font-family: inherit;
    padding: 14px;
    color: var(--sales-text);
    font-weight: 700;
    font-size: 0.92rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.faq-button svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    color: var(--sales-primary-strong);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-button svg {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
}

.faq-content-inner {
    padding: 0 14px 14px;
    color: var(--sales-muted);
    font-size: 0.9rem;
}

.final-cta {
    border-radius: 28px;
    border: 1px solid color-mix(in srgb, var(--sales-primary) 28%, var(--sales-border));
    background: linear-gradient(135deg, rgba(189, 167, 255, 0.2) 0%, rgba(243, 166, 200, 0.17) 55%, rgba(255, 154, 139, 0.18) 100%);
    padding: 20px;
    text-align: center;
}

.final-cta h2 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.15;
}

.final-cta p {
    margin: 0 0 14px;
    color: var(--sales-muted);
}

.final-cta .cta-row {
    max-width: 340px;
    margin: 0 auto;
}

.sales-footer {
    border-top: 1px solid color-mix(in srgb, var(--sales-border) 90%, transparent);
    padding: 20px 0 28px;
}

.sales-footer p {
    margin: 0;
    color: var(--sales-muted);
    font-size: 0.84rem;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a {
    text-decoration: none;
    color: var(--sales-muted);
    font-size: 0.84rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--sales-primary);
}

@media (min-width: 700px) {
    .sales-container {
        padding: 0 24px;
    }

    .cta-row {
        grid-template-columns: repeat(2, minmax(0, auto));
        justify-content: flex-start;
    }

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

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

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

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

    .plan-card.best-value {
        transform: translateY(-2px);
    }
}

@media (min-width: 980px) {
    .sales-nav {
        display: inline-flex;
    }

    .hero {
        padding: 54px 0 38px;
    }

    .hero-grid {
        grid-template-columns: 1.02fr 0.98fr;
        align-items: center;
        gap: 34px;
    }

    .device-mock {
        width: min(410px, 100%);
    }

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

    .premium-glance {
        padding: 20px;
    }
}

@media (max-width: 979px) {
    .sales-nav {
        display: none;
    }
}
