.sales-shell {
    --sales-navy: #071428;
    --sales-deep: #0a1935;
    --sales-core: #163b7f;
    --sales-cyan: #00aeef;
    --sales-mist: #e8f1f8;
    --sales-ink: #0a1935;
    --sales-muted: #5b6b86;
    --sales-font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    --sales-font-body: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgb(0 174 239 / 0.18), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 20%, rgb(22 59 127 / 0.12), transparent 50%),
        linear-gradient(180deg, #f2f6fb 0%, #eef3f9 40%, #f7fafc 100%);
    color: var(--sales-ink);
    font-family: var(--sales-font-body);
    -webkit-font-smoothing: antialiased;
}

.sales-skip {
    position: absolute;
    left: -9999px;
}
.sales-skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 60;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 0.375rem;
}

.sales-wrap {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.sales-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    background: rgb(7 20 40 / 0.88);
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.sales-header-inner {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 3.75rem;
}

.sales-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
}

.sales-brand-logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.sales-brand-name {
    font-family: var(--sales-font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.sales-nav {
    display: none;
    margin-left: auto;
    gap: 1.25rem;
}
.sales-nav a {
    color: rgb(255 255 255 / 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.sales-nav a:hover {
    color: #fff;
}

.sales-header-cta {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 0.45rem;
    background: var(--sales-cyan);
    color: var(--sales-navy);
    font-weight: 650;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.sales-header-cta:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .sales-nav {
        display: flex;
    }
    .sales-header-cta {
        margin-left: 0;
    }
}

.sales-hero {
    position: relative;
    isolation: isolate;
    min-height: min(92vh, 820px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.sales-hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sales-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.02);
    animation: sales-hero-drift 18s ease-in-out infinite alternate;
}

.sales-hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgb(7 20 40 / 0.94) 0%, rgb(7 20 40 / 0.72) 42%, rgb(7 20 40 / 0.35) 100%),
        linear-gradient(0deg, rgb(7 20 40 / 0.88) 0%, transparent 45%);
}

.sales-hero-copy {
    padding: 5.5rem 0 3.5rem;
    max-width: 40rem;
    animation: sales-rise 0.85s ease-out both;
}

.sales-hero-logo {
    display: block;
    width: clamp(4.5rem, 12vw, 7rem);
    height: auto;
    margin: 0.35rem 0 0.85rem;
    filter: drop-shadow(0 8px 24px rgb(0 0 0 / 0.35));
}

.sales-kicker,
.sales-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sales-cyan);
}

.sales-hero .sales-kicker {
    color: #7ad9f7;
}

.sales-hero-title {
    margin: 0;
    font-family: var(--sales-font-display);
    font-weight: 800;
    font-size: clamp(2.75rem, 8vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.sales-hero-lead {
    margin: 1.1rem 0 0;
    max-width: 34rem;
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgb(255 255 255 / 0.86);
}

.sales-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.sales-btn-primary,
.sales-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 650;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.sales-btn-primary {
    background: var(--sales-cyan);
    color: var(--sales-navy);
}
.sales-btn-ghost {
    border: 1px solid rgb(255 255 255 / 0.35);
    color: #fff;
}
.sales-btn-primary:hover,
.sales-btn-ghost:hover {
    transform: translateY(-1px);
}

.sales-section {
    padding: 4.5rem 0;
}

.sales-section--tint {
    background: rgb(255 255 255 / 0.55);
    border-block: 1px solid rgb(10 25 53 / 0.06);
}

.sales-audience {
    padding-top: 3.25rem;
    padding-bottom: 1.5rem;
}

.sales-h2 {
    margin: 0;
    font-family: var(--sales-font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.sales-lead {
    margin: 0.85rem 0 0;
    max-width: 40rem;
    color: var(--sales-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.sales-shot {
    margin: 1.75rem 0 0;
}

.sales-shot--feature {
    margin-top: 2.5rem;
    padding-top: 0.25rem;
}

.sales-shot--feature + .sales-shot--feature {
    margin-top: 2.75rem;
    padding-top: 2.25rem;
    border-top: 1px solid rgb(10 25 53 / 0.08);
}

.sales-shot-copy {
    margin-bottom: 1rem;
    max-width: 42rem;
}

.sales-shot-title {
    margin: 0;
    font-family: var(--sales-font-display);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    letter-spacing: -0.02em;
    color: var(--sales-deep);
}

.sales-shot-body {
    margin: 0.55rem 0 0;
    color: var(--sales-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.sales-shot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.65rem;
    border: 1px solid rgb(10 25 53 / 0.1);
    box-shadow: 0 18px 40px -24px rgb(7 20 40 / 0.45);
    background: #fff;
}

.sales-shot-zoom {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    text-align: left;
    border-radius: 0.65rem;
}

.sales-shot-zoom:focus-visible {
    outline: 2px solid var(--sales-cyan);
    outline-offset: 3px;
}

.sales-shot-zoom img {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sales-shot-zoom:hover img {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px -22px rgb(7 20 40 / 0.55);
}

.sales-shot-zoom-hint {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 0.4rem;
    background: rgb(7 20 40 / 0.82);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.sales-shot-zoom:hover .sales-shot-zoom-hint,
.sales-shot-zoom:focus-visible .sales-shot-zoom-hint {
    opacity: 1;
    transform: none;
}

body.sales-lightbox-open {
    overflow: hidden;
}

.sales-lightbox[hidden] {
    display: none !important;
}

.sales-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.sales-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgb(7 20 40 / 0.88);
    cursor: zoom-out;
}

.sales-lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: min(92vh, 100%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: sales-rise 0.25s ease-out both;
}

.sales-lightbox-img {
    width: 100%;
    height: auto;
    max-height: calc(92vh - 3rem);
    object-fit: contain;
    border-radius: 0.5rem;
    background: #fff;
    box-shadow: 0 24px 60px -20px rgb(0 0 0 / 0.55);
}

.sales-lightbox-caption {
    margin: 0;
    color: rgb(255 255 255 / 0.88);
    font-size: 0.95rem;
    text-align: center;
}

.sales-lightbox-close {
    position: absolute;
    top: -0.35rem;
    right: 0;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.14);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
}

.sales-lightbox-close:hover,
.sales-lightbox-close:focus-visible {
    background: rgb(255 255 255 / 0.28);
    outline: none;
}

.sales-shot figcaption {
    margin-top: 0.65rem;
    font-size: 0.9rem;
    color: var(--sales-muted);
    line-height: 1.45;
}

.sales-shot-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .sales-shot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sales-reveal {
    animation: sales-rise 0.7s ease-out both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
}

@supports not (animation-timeline: view()) {
    .sales-reveal {
        animation: none;
    }
}

.sales-pricing {
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgb(0 174 239 / 0.12), transparent 60%),
        #fff;
}

.sales-price-setup {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgb(10 25 53 / 0.1);
    border-bottom: 1px solid rgb(10 25 53 / 0.1);
}

.sales-price-label {
    margin: 0;
    color: var(--sales-muted);
    font-size: 0.95rem;
}

.sales-price-value {
    margin: 0.35rem 0 0;
    font-family: var(--sales-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--sales-cyan);
}

.sales-price-once {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: var(--sales-muted);
}

.sales-tiers {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.sales-tier {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(10 25 53 / 0.08);
}

.sales-tier-range {
    font-weight: 600;
}

.sales-tier-price {
    font-family: var(--sales-font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--sales-cyan);
}
.sales-tier-price small {
    font-family: var(--sales-font-body);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--sales-muted);
}

.sales-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--sales-deep);
    color: rgb(255 255 255 / 0.88);
    border-radius: 0.75rem;
}

@media (min-width: 720px) {
    .sales-contact {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.sales-contact-title {
    margin: 0;
    font-family: var(--sales-font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.sales-contact-body {
    margin: 0.45rem 0 0;
    max-width: 36rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgb(255 255 255 / 0.78);
}

.sales-contact-body a {
    color: #7ad9f7;
    text-decoration: none;
}

.sales-contact-body a:hover {
    text-decoration: underline;
}

.sales-contact-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.sales-steps {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .sales-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.sales-steps li {
    display: flex;
    gap: 0.85rem;
}

.sales-steps span {
    font-family: var(--sales-font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--sales-cyan);
    line-height: 1.2;
}

.sales-steps strong {
    display: block;
    font-size: 1.05rem;
}

.sales-steps p {
    margin: 0.3rem 0 0;
    color: var(--sales-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.sales-about-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .sales-about-row {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
}

.sales-about-logo {
    width: 5.5rem;
    height: 5.5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.sales-about-close {
    margin: 1.5rem 0 0;
    max-width: 36rem;
    font-size: 0.95rem;
    color: var(--sales-muted);
    line-height: 1.55;
}

.sales-footer {
    background: var(--sales-navy);
    color: rgb(255 255 255 / 0.78);
    padding: 2.75rem 0 1.5rem;
}

.sales-footer-grid {
    display: grid;
    gap: 2.25rem;
}

@media (min-width: 768px) {
    .sales-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.sales-footer-heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.sales-footer-logo {
    object-fit: contain;
    flex-shrink: 0;
}

.sales-footer-logo--product {
    width: 3.25rem;
    height: 3.25rem;
}

.sales-footer-logo--company {
    width: 3.25rem;
    height: 3.25rem;
}

.sales-footer-brand {
    margin: 0;
    font-family: var(--sales-font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.sales-footer-meta {
    margin: 0.15rem 0 0;
    font-size: 0.85rem;
}

.sales-footer-desc,
.sales-footer-line {
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 28rem;
}

.sales-footer-line a {
    color: #7ad9f7;
    text-decoration: none;
}
.sales-footer-line a:hover {
    text-decoration: underline;
}

.sales-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    font-size: 0.8rem;
    color: rgb(255 255 255 / 0.55);
}

.sales-footer-bottom p {
    margin: 0;
}

@keyframes sales-rise {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes sales-hero-drift {
    from {
        transform: scale(1.02) translateY(0);
    }
    to {
        transform: scale(1.06) translateY(-1.5%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sales-hero-img,
    .sales-hero-copy,
    .sales-reveal,
    .sales-header-cta,
    .sales-btn-primary,
    .sales-btn-ghost,
    .sales-shot-zoom img,
    .sales-lightbox-panel {
        animation: none !important;
        transition: none !important;
    }
}
