.sales-page {
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
}

.sales-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 8px;
    color: #FFFFFF;
    background: var(--accent);
    transform: translateY(-160%);
}

.sales-skip-link:focus {
    transform: translateY(0);
}

.sales-main {
    padding: clamp(54px, 7vw, 88px) 0 clamp(72px, 9vw, 112px);
}

.sales-content {
    width: 100%;
    min-width: 0;
    max-width: 1080px;
}

.sales-heading {
    max-width: 900px;
    margin-bottom: clamp(28px, 4vw, 42px);
}

.sales-heading h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.sales-prompt-shell {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 18, 18, 0.18);
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 26px 70px rgba(40, 29, 16, 0.1);
}

.sales-prompt-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-height: 74px;
    padding: 14px 18px 14px 24px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.14);
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.prompt-copy-all {
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid var(--accent);
    border-radius: 10px;
    font: 700 0.9rem/1 var(--font-sans);
    color: #FFFFFF;
    background: var(--accent);
    cursor: pointer;
}

.prompt-copy-all:hover {
    filter: brightness(0.93);
}

.prompt-copy-all:focus-visible {
    outline: 3px solid rgba(239, 78, 52, 0.28);
    outline-offset: 3px;
}

.prompt-copy-all:disabled {
    opacity: 0.55;
    cursor: wait;
}

.prompt-copy-all.is-copied {
    color: #0D5128;
    border-color: rgba(22, 163, 74, 0.35);
    background: #E8F7ED;
}

.sales-prompt {
    width: 100%;
    min-width: 0;
    max-width: 78ch;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
    border: 0;
    font-family: var(--font-mono);
    font-size: clamp(0.84rem, 1.2vw, 0.94rem);
    line-height: 1.75;
    color: #24211D;
    background: transparent;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    word-break: break-word;
}

.sales-prompt:focus-visible {
    outline: 3px solid rgba(239, 78, 52, 0.22);
    outline-offset: -6px;
}

.sales-prompt.is-error {
    color: #8A1C16;
}

.sales-status {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 960px) {
    .sales-page .header-container {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .sales-page .mobile-menu-toggle {
        grid-column: 2;
        justify-self: end;
    }
}

@media (max-width: 700px) {
    .sales-main {
        padding-top: 46px;
    }

    .sales-heading h1 {
        font-size: clamp(2.6rem, 12vw, 3.5rem);
    }

    .sales-prompt-bar {
        min-height: 68px;
        padding: 11px 12px 11px 16px;
    }

    .prompt-copy-all {
        min-height: 44px;
        padding-inline: 14px;
    }

    .sales-prompt {
        padding: 26px 20px 38px;
        font-size: 0.82rem;
        line-height: 1.68;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sales-skip-link,
    .prompt-copy-all {
        transition: none;
    }
}
