.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    background: #fff;
}

.about-eyebrow,
.sales-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-eyebrow {
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
}

.about-section-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.about-section-title.justify-center {
    display: flex;
    justify-content: center;
}

.about-section-title span {
    width: 52px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #d9f99d);
}

.about-section-title p {
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

.gradient-text {
    background: linear-gradient(90deg, #60a5fa 0%, #d9f99d 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.26);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.34);
}

.btn-secondary {
    border: 1px solid rgba(148, 163, 184, 0.45);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* 🔥 FIXED HEIGHT */
    display: flex;
    align-items: center;
    /* vertical center */
    z-index: 1000;
    background: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #facc15;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #306bc2;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.dropdown:hover>.nav-trigger,
.dropdown:hover>.nav-trigger .nav-arrow {
    color: #facc15;
}

.dropdown {
    position: relative;
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-arrow {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu,
.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.dropdown-menu {
    min-width: 180px;
    padding: 10px 0;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    list-style: none;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
}

.dropdown-menu a:hover {
    background: rgba(250, 204, 21, 0.08);
}

.dropdown-platform {
    position: static;
}

.platform-menu {
    left: 50%;
    width: min(960px, calc(100vw - 40px));
    transform: translate(-50%, 12px);
    padding: 26px;
    border-radius: 24px;
    background: rgba(10, 15, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.26);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
}

.platform-menu-label {
    color: #93c5fd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.platform-menu-intro h4 {
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.35;
    margin-top: 12px;
}

.platform-menu-copy {
    color: #94a3b8;
    line-height: 1.7;
    margin-top: 12px;
}

.platform-menu-grid {
    display: grid;
    gap: 14px;
}

.platform-menu-card {
    display: block;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.platform-menu-card h5 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.platform-menu-card p {
    color: #94a3b8;
    line-height: 1.6;
    margin-top: 8px;
}

.platform-menu-card:hover {
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(37, 99, 235, 0.08);
}

.dropdown:hover .dropdown-menu,
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .platform-menu {
    transform: translate(-50%, 0);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050816;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(37, 99, 235, 0.28), transparent 22%),
        radial-gradient(circle at 26% 70%, rgba(59, 130, 246, 0.18), transparent 26%),
        linear-gradient(90deg, rgba(3, 7, 18, 0.78), rgba(3, 7, 18, 0.42));
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 96px;
}

.hero-wrapper {
    min-height: 78vh;
}

.hero-left,
.hero-right {
    flex: 1 1 50%;
}

.hero-left {
    min-height: 420px;
}

.hero-right {
    max-width: 620px;
    margin-left: auto;
    color: #fff;
}

.hero-right h1 {
    font-weight: 700;
    color: #fff;
}

.hero-right p {
    color: rgba(226, 232, 240, 0.88);
    max-width: 540px;
}

.hero-buttons {
    align-items: center;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feature-item {
    position: relative;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.feature-item.active,
.feature-item:hover {
    opacity: 1;
}

.progress {
    width: 0;
    height: 3px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa, #a3e635);
}

.faq-item {
    overflow: hidden;
}

.faq-btn {
    background: transparent;
    border: 0;
    cursor: pointer;
}

.faq-content {
    transition: max-height 0.35s ease;
}

@media (max-width: 991px) {
    .nav-container {
        padding: 16px 0;
    }

    .platform-menu {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero-right {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(92%, 1200px);
    }

    .hero {
        min-height: 80vh;
    }

    .hero-wrapper {
        min-height: 64vh;
        justify-content: center;
    }

    .hero-right {
        text-align: center;
    }

    .hero-right p {
        margin-left: auto;
        margin-right: auto;
    }

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

.nurep-hero {
    background:
        radial-gradient(circle at bottom center, rgba(50, 95, 230, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eff5fb 100%);
}

.nurep-hero-grid {
    background-image:
        radial-gradient(rgba(50, 95, 230, 0.22) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.98));
}

.nurep-wordmark {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #d8ff39 0%, #2454e6 70%);
    -webkit-background-clip: text;
    color: transparent;
}

.nurep-powered {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    color: #334155;
}

.nurep-powered strong {
    color: #0f172a;
    font-size: 1.1rem;
}

.nurep-hero-stage {
    position: relative;
    min-height: 680px;
    margin-top: 56px;
}

.nurep-flow-line {
    position: absolute;
    border: 2px solid rgba(148, 163, 184, 0.28);
    border-top: 0;
    border-right: 0;
    border-radius: 0 0 0 40px;
}

.nurep-flow-line-left {
    width: 36%;
    height: 120px;
    left: 22%;
    bottom: 114px;
}

.nurep-flow-line-right {
    width: 28%;
    height: 150px;
    right: 18%;
    top: 170px;
}

.nurep-stage-cluster,
.nurep-stage-center,
.nurep-stage-right {
    position: absolute;
}

.nurep-stage-cluster {
    left: 4%;
    top: 150px;
    width: 320px;
    height: 340px;
}

.nurep-cluster-core,
.nurep-cluster-node,
.nurep-play-orb,
.nurep-channel-pill,
.nurep-control-card,
.nurep-chat-bubble,
.nurep-media-frame,
.nurep-voice-card,
.nurep-feature-card,
.nurep-brand-card,
.nurep-info-card,
.nurep-solution-card,
.nurep-edge-note {
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
}

.nurep-cluster-core {
    position: absolute;
    left: 78px;
    top: 94px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ddff2f;
    display: grid;
    place-items: center;
    z-index: 2;
}

.nurep-cluster-core::before {
    content: "";
    position: absolute;
    inset: -56px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.nurep-cluster-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #2553e5;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: absolute;
    z-index: 1;
}

.nurep-cluster-node::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 1px;
    background: rgba(148, 163, 184, 0.4);
    transform-origin: left center;
}

.nurep-cluster-chat {
    top: 0;
    left: 108px;
}

.nurep-cluster-chat::after {
    left: 50%;
    top: 100%;
    width: 1px;
    height: 66px;
}

.nurep-cluster-megaphone {
    top: 34px;
    left: 28px;
}

.nurep-cluster-megaphone::after {
    left: 42px;
    top: 40px;
    transform: rotate(38deg);
}

.nurep-cluster-doc {
    top: 34px;
    right: 26px;
}

.nurep-cluster-doc::after {
    right: 42px;
    top: 40px;
    transform: rotate(142deg);
}

.nurep-cluster-web {
    left: 0;
    top: 118px;
}

.nurep-cluster-web::after {
    left: 56px;
    top: 28px;
}

.nurep-cluster-cube {
    right: 0;
    top: 120px;
}

.nurep-cluster-cube::after {
    right: 56px;
    top: 28px;
}

.nurep-chat-bubble {
    position: absolute;
    left: 24px;
    bottom: 0;
    padding: 14px 20px;
    border-radius: 14px;
    background: #2e5ae9;
    color: #fff;
    font-size: 14px;
}

.nurep-stage-center {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.nurep-play-orb {
    width: 178px;
    height: 178px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #4c7cff, #2454e6 72%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-left: 6px;
    position: relative;
}

.nurep-play-orb::before {
    content: "";
    position: absolute;
    inset: -32px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.94), rgba(225, 233, 245, 0.72) 60%, transparent 74%);
    z-index: -1;
    filter: blur(4px);
}

.nurep-play-orb span {
    width: 10px;
    border-radius: 4px;
    background: #fff;
    animation: nurepBars 1.4s ease-in-out infinite;
}

.nurep-play-orb span:nth-child(1) {
    height: 48px;
}

.nurep-play-orb span:nth-child(2) {
    height: 42px;
    animation-delay: 0.12s;
}

.nurep-play-orb span:nth-child(3) {
    height: 36px;
    animation-delay: 0.24s;
}

.nurep-play-orb span:nth-child(4) {
    height: 28px;
    animation-delay: 0.36s;
}

.nurep-play-orb span:nth-child(5) {
    height: 14px;
    animation-delay: 0.48s;
}

.nurep-wave-bars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nurep-wave-bars span {
    width: 4px;
    border-radius: 99px;
    background: #2553e5;
    animation: nurepBars 1.3s ease-in-out infinite;
}

.nurep-wave-bars span:nth-child(1) {
    height: 18px;
}

.nurep-wave-bars span:nth-child(2) {
    height: 24px;
    animation-delay: 0.12s;
}

.nurep-wave-bars span:nth-child(3) {
    height: 30px;
    animation-delay: 0.24s;
}

.nurep-wave-bars span:nth-child(4) {
    height: 20px;
    animation-delay: 0.36s;
}

.nurep-wave-bars span:nth-child(5) {
    height: 12px;
    animation-delay: 0.48s;
}

.nurep-wave-bars.compact span {
    background: #2e5ae9;
}

.nurep-stage-right {
    right: 0;
    top: 98px;
    width: 44%;
}

.nurep-channel-pill {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 38px;
    border-radius: 999px;
    background: #ddff2f;
    color: #1e3a8a;
    font-weight: 600;
    margin-left: auto;
}

.nurep-control-card {
    width: min(100%, 308px);
    margin: 28px 0 0 auto;
    padding: 22px 18px;
    border-radius: 18px;
    background: #2e5ae9;
    color: #fff;
}

.nurep-control-title,
.nurep-control-subtitle {
    color: #ddff2f;
    font-weight: 700;
}

.nurep-slider-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 14px;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
}

.nurep-slider {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
    margin-top: 12px;
}

.nurep-slider.long {
    margin-top: 10px;
}

.nurep-slider i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #ddff2f;
}

.nurep-control-copy {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
}

.nurep-dropdown-chip {
    width: fit-content;
    margin: 12px 0 0 auto;
    padding: 10px 14px;
    border-radius: 12px;
    background: #ddff2f;
    color: #0f172a;
    font-size: 12px;
    font-weight: 600;
}

.nurep-media-frame {
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(7, 24, 45, 0.96), rgba(10, 36, 61, 0.98));
}

.nurep-media-frame.compact {
    min-height: 100%;
}

.nurep-media-placeholder {
    min-height: 380px;
    border-radius: 24px;
    border: 1.5px dashed rgba(103, 232, 249, 0.3);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(8, 47, 73, 0.22)),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.06) 12px,
            transparent 12px,
            transparent 24px);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
}

.nurep-media-placeholder span {
    display: block;
    color: #67e8f9;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nurep-media-placeholder p {
    color: #cbd5e1;
    margin-top: 10px;
    max-width: 260px;
    line-height: 1.7;
}

.nurep-info-card,
.nurep-solution-card,
.nurep-feature-card,
.nurep-brand-card,
.nurep-edge-note {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dbeafe;
}

.nurep-mini-label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(221, 255, 47, 0.2);
    color: #365314;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nurep-info-card p,
.nurep-solution-card p,
.nurep-feature-card p,
.nurep-brand-card p,
.nurep-brand-card span,
.nurep-edge-note p {
    color: #475569;
    line-height: 1.8;
}

.nurep-info-card p {
    margin-top: 14px;
}

.nurep-solution-card h3,
.nurep-feature-card h3,
.nurep-brand-card h3,
.nurep-edge-note h3 {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
}

.nurep-solution-card p,
.nurep-feature-card p,
.nurep-brand-card p {
    margin-top: 12px;
}

.nurep-voice-scroll {
    position: relative;
    height: 240vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.nurep-voice-sticky {
    position: sticky;
    top: 90px;
    overflow: hidden;
    padding: 110px 0 80px;
}

.nurep-voice-track-wrap {
    overflow: hidden;
}

.nurep-voice-track {
    display: flex;
    gap: 24px;
    width: max-content;
    transition: transform 0.08s linear;
    will-change: transform;
}

.nurep-voice-card {
    width: min(82vw, 420px);
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #dbeafe;
    flex: 0 0 auto;
}

.nurep-card-media {
    min-height: 260px;
    margin-bottom: 22px;
}

.nurep-voice-card h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: #0f172a;
    margin-top: 14px;
}

.nurep-voice-card p {
    color: #475569;
    line-height: 1.8;
    margin-top: 12px;
}

.nurep-edge-note {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}

.nurep-feature-card {
    min-height: 100%;
}

.nurep-brand-card {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.nurep-brand-card span {
    display: block;
    margin-top: 16px;
    font-weight: 600;
}

.nurep-cta {
    background: linear-gradient(180deg, #f1f6fc 0%, #e9f1fb 100%);
}

@keyframes nurepBars {

    0%,
    100% {
        transform: scaleY(0.85);
        opacity: 0.8;
    }

    50% {
        transform: scaleY(1.08);
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .nurep-hero-stage {
        min-height: 980px;
    }

    .nurep-stage-cluster {
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }

    .nurep-stage-right {
        right: 50%;
        transform: translateX(50%);
        top: 430px;
        width: 100%;
        max-width: 420px;
    }

    .nurep-stage-center {
        bottom: 30px;
    }

    .nurep-flow-line-left,
    .nurep-flow-line-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .nurep-wordmark {
        font-size: 3.2rem;
    }

    .nurep-hero-stage {
        min-height: 920px;
        margin-top: 42px;
    }

    .nurep-stage-cluster {
        width: 290px;
        height: 320px;
    }

    .nurep-cluster-core {
        left: 96px;
        top: 92px;
        width: 92px;
        height: 92px;
    }

    .nurep-chat-bubble {
        left: 8px;
        right: 8px;
        bottom: 6px;
        text-align: center;
    }

    .nurep-channel-pill {
        margin: 0 auto;
        gap: 18px;
        padding: 16px 24px;
    }

    .nurep-control-card {
        margin-right: auto;
        margin-left: auto;
    }

    .nurep-media-placeholder,
    .nurep-card-media {
        min-height: 220px;
    }

    .nurep-voice-scroll {
        height: auto;
        padding: 90px 0;
    }

    .nurep-voice-sticky {
        position: static;
        padding: 0;
    }

    .nurep-voice-track-wrap {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .nurep-voice-track {
        transform: none !important;
        padding-bottom: 4px;
    }

    .nurep-voice-card {
        width: 84vw;
    }
}

.nupulse-hero {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34%),
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 28%),
        linear-gradient(180deg, #04111f 0%, #081a31 52%, #0c2340 100%);
}

.nupulse-hero-grid,
.nupulse-cta-grid {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.nupulse-accent {
    color: #67e8f9;
}

.nupulse-stat-chip {
    padding: 20px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.56);
    border: 1px solid rgba(125, 211, 252, 0.18);
    box-shadow: 0 18px 40px rgba(3, 7, 18, 0.2);
}

.nupulse-stat-chip strong,
.nupulse-panel strong,
.nupulse-feature-card h3,
.nupulse-info-row strong {
    display: block;
    color: #fff;
}

.nupulse-stat-chip strong {
    font-size: 1.6rem;
}

.nupulse-stat-chip span {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    line-height: 1.6;
}

.nupulse-stage-wrap {
    position: relative;
    min-height: 640px;
}

.nupulse-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(103, 232, 249, 0.16);
}

.nupulse-orbit-one {
    inset: 40px 30px auto;
    height: 480px;
}

.nupulse-orbit-two {
    inset: 10px 70px auto;
    height: 540px;
    opacity: 0.7;
}

.nupulse-floating-card {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(8, 15, 31, 0.82);
    border: 1px solid rgba(103, 232, 249, 0.18);
    color: #e2e8f0;
    box-shadow: 0 18px 30px rgba(2, 8, 23, 0.26);
    backdrop-filter: blur(12px);
}

.nupulse-float-top {
    top: 30px;
    left: 16px;
}

.nupulse-float-bottom {
    right: 12px;
    bottom: 48px;
}

.nupulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.16);
}

.nupulse-stage {
    position: absolute;
    inset: 82px 0 0;
    padding: 26px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(12, 23, 43, 0.95), rgba(5, 15, 29, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 36px 80px rgba(2, 8, 23, 0.34);
    backdrop-filter: blur(16px);
}

.nupulse-stage-top,
.nupulse-panel-head,
.nupulse-logs-top,
.nupulse-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nupulse-stage-top {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.nupulse-stage-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.nupulse-panel {
    min-height: 100%;
    padding: 20px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.nupulse-panel-primary {
    background: linear-gradient(180deg, rgba(8, 64, 94, 0.88), rgba(15, 23, 42, 0.84));
}

.nupulse-panel-head p,
.nupulse-panel-head span,
.nupulse-list li,
.nupulse-alert-feed div span,
.nupulse-logs-top span,
.nupulse-search-row span,
.nupulse-message p,
.nupulse-summary-box p {
    color: #cbd5e1;
}

.nupulse-panel-head p {
    font-weight: 600;
}

.nupulse-panel-head span {
    font-size: 0.82rem;
}

.nupulse-chart {
    margin-top: 22px;
}

.nupulse-chart-line {
    height: 110px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(34, 211, 238, 0.12), rgba(34, 211, 238, 0)),
        linear-gradient(135deg, rgba(14, 116, 144, 0.88), rgba(56, 189, 248, 0.22));
    position: relative;
    overflow: hidden;
}

.nupulse-chart-line::after {
    content: "";
    position: absolute;
    inset: 14px 12px 16px;
    border-radius: 14px;
    background:
        linear-gradient(120deg, transparent 0%, rgba(103, 232, 249, 0.4) 20%, rgba(59, 130, 246, 0.85) 48%, transparent 74%),
        linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.08));
    clip-path: polygon(0 84%, 14% 66%, 28% 70%, 40% 46%, 56% 54%, 69% 28%, 82% 34%, 100% 8%, 100% 100%, 0 100%);
}

.nupulse-chart-bars {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
    margin-top: 16px;
    height: 82px;
}

.nupulse-chart-bars span {
    display: block;
    border-radius: 999px 999px 14px 14px;
    background: linear-gradient(180deg, #67e8f9, #2563eb);
    animation: nupulseBars 3.2s ease-in-out infinite;
    transform-origin: bottom;
}

.nupulse-chart-bars span:nth-child(1) {
    height: 48%;
    animation-delay: 0s;
}

.nupulse-chart-bars span:nth-child(2) {
    height: 76%;
    animation-delay: 0.2s;
}

.nupulse-chart-bars span:nth-child(3) {
    height: 58%;
    animation-delay: 0.35s;
}

.nupulse-chart-bars span:nth-child(4) {
    height: 92%;
    animation-delay: 0.5s;
}

.nupulse-chart-bars span:nth-child(5) {
    height: 65%;
    animation-delay: 0.7s;
}

.nupulse-chart-bars span:nth-child(6) {
    height: 74%;
    animation-delay: 0.9s;
}

.nupulse-chart-bars span:nth-child(7) {
    height: 86%;
    animation-delay: 1.1s;
}

.nupulse-metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.nupulse-metric-row div,
.nupulse-summary-box,
.nupulse-info-row {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.nupulse-metric-row span {
    display: block;
    color: #cbd5e1;
    margin-top: 6px;
    font-size: 0.92rem;
}

.nupulse-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.nupulse-list li,
.nupulse-alert-feed div {
    display: flex;
    gap: 12px;
    line-height: 1.7;
}

.nupulse-list li span {
    width: 9px;
    height: 9px;
    margin-top: 9px;
    border-radius: 999px;
    flex: 0 0 auto;
    background: #22d3ee;
}

.nupulse-image-panel {
    padding: 0;
    overflow: hidden;
}

.nupulse-image-panel img,
.nupulse-visual-image,
.nupulse-story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nupulse-alert-feed {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.nupulse-alert-feed strong,
.nupulse-message strong,
.nupulse-summary-box .nupulse-label,
.nupulse-visual-copy h3,
.nupulse-visual-copy .nupulse-label,
.nupulse-powered-strip>span,
.nupulse-feature-icon {
    color: #fff;
}

.nupulse-powered-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e0f2fe, #f8fbff);
    border: 1px solid #dbeafe;
    overflow: hidden;
}

.nupulse-powered-strip>span {
    color: #0f172a;
    font-weight: 700;
    white-space: nowrap;
}

.nupulse-pill-track {
    display: flex;
    gap: 14px;
    min-width: max-content;
    animation: nupulseTicker 24s linear infinite;
}

.nupulse-pill-track span {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: #1e3a8a;
    border: 1px solid #dbeafe;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}

.nupulse-feature-card {
    min-height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #dbeafe;
    box-shadow: 0 24px 54px rgba(148, 163, 184, 0.12);
}

.nupulse-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a, #0f4c81);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nupulse-feature-card h3 {
    margin-top: 24px;
    color: #0f172a;
    font-size: 1.18rem;
}

.nupulse-feature-card p,
.nupulse-info-row p {
    margin-top: 14px;
    color: #475569;
    line-height: 1.8;
}

.nupulse-dashboard-band,
.nupulse-logs-section,
.nupulse-cta {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 28%),
        linear-gradient(180deg, #061425, #091a31 100%);
}

.nupulse-tab {
    width: 100%;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.72);
    text-align: left;
    color: #fff;
    transition: 0.25s ease;
}

.nupulse-tab strong,
.nupulse-visual-copy h3,
.nupulse-message strong,
.nupulse-summary-box .nupulse-label {
    font-weight: 700;
}

.nupulse-tab span,
.nupulse-visual-copy p,
.nupulse-message p {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    line-height: 1.7;
}

.nupulse-tab:hover,
.nupulse-tab.active {
    border-color: rgba(103, 232, 249, 0.42);
    background: rgba(8, 64, 94, 0.44);
    transform: translateY(-1px);
}

.nupulse-visual-shell {
    position: relative;
}

.nupulse-visual-screen {
    position: relative;
    min-height: 620px;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(6, 12, 26, 0.96), rgba(12, 23, 43, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 32px 80px rgba(2, 8, 23, 0.34);
    overflow: hidden;
}

.nupulse-visual-copy {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.nupulse-visual-copy.active {
    opacity: 1;
    transform: translateY(0);
}

.nupulse-label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    color: #67e8f9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nupulse-visual-copy h3 {
    margin-top: 18px;
    font-size: clamp(1.6rem, 2.2vw, 2.45rem);
    line-height: 1.25;
}

.nupulse-visual-image-wrap {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    top: 220px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.72);
}

.nupulse-visual-image {
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nupulse-visual-image.is-switching {
    opacity: 0.35;
    transform: scale(0.98);
}

.nupulse-story-media {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.nupulse-story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.46));
}

.nupulse-story-badge {
    position: absolute;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.nupulse-story-badge-top {
    top: 26px;
    left: 24px;
}

.nupulse-story-badge-bottom {
    right: 24px;
    bottom: 26px;
}

.nupulse-info-row {
    background: #fff;
    border: 1px solid #dbeafe;
}

.nupulse-info-row strong {
    color: #0f172a;
    font-size: 1.05rem;
}

.nupulse-logs-panel {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 17, 33, 0.98), rgba(15, 23, 42, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 30px 64px rgba(2, 8, 23, 0.28);
}

.nupulse-search-row {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.nupulse-transcript {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.nupulse-message {
    padding: 18px;
    border-radius: 22px;
    max-width: 88%;
}

.nupulse-message.ai {
    background: rgba(8, 64, 94, 0.34);
    border: 1px solid rgba(34, 211, 238, 0.18);
}

.nupulse-message.user {
    margin-left: auto;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.22);
}

.nupulse-message p {
    margin-top: 8px;
}

.nupulse-summary-box {
    margin-top: 18px;
}

.nupulse-summary-box p {
    margin-top: 10px;
}

.nupulse-cta {
    position: relative;
}

@keyframes nupulseBars {

    0%,
    100% {
        transform: scaleY(0.82);
        opacity: 0.85;
    }

    50% {
        transform: scaleY(1.05);
        opacity: 1;
    }
}

@keyframes nupulseTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .nupulse-stage-wrap {
        min-height: 720px;
    }

    .nupulse-stage-grid {
        grid-template-columns: 1fr;
    }

    .nupulse-visual-screen {
        min-height: 560px;
    }

    .nupulse-visual-image-wrap {
        top: 250px;
    }
}

@media (max-width: 768px) {
    .nupulse-stage-wrap {
        min-height: auto;
    }

    .nupulse-orbit,
    .nupulse-floating-card {
        display: none;
    }

    .nupulse-stage {
        position: relative;
        inset: auto;
        padding: 18px;
        border-radius: 26px;
        margin-top: 24px;
    }

    .nupulse-powered-strip {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 28px;
    }

    .nupulse-pill-track {
        animation-duration: 32s;
    }

    .nupulse-feature-card,
    .nupulse-logs-panel {
        padding: 22px;
    }

    .nupulse-visual-screen {
        min-height: auto;
        padding: 22px;
    }

    .nupulse-visual-copy {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        display: none;
        margin-bottom: 22px;
    }

    .nupulse-visual-copy.active {
        display: block;
    }

    .nupulse-visual-image-wrap {
        position: relative;
        inset: auto;
        height: 320px;
        margin-top: 18px;
    }

    .nupulse-story-media {
        min-height: 420px;
    }

    .nupulse-story-badge {
        font-size: 0.82rem;
    }

    .nupulse-message {
        max-width: 100%;
    }
}

.sales-hero,
.sales-funnel-band,
.sales-cta {
    position: relative;
    background:
        radial-gradient(circle at 20% 28%, rgba(59, 130, 246, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfd 68%, #f3f4f6 100%);
}

.sales-grid {
    background-image:
        radial-gradient(rgba(148, 163, 184, 0.35) 1.1px, transparent 1.1px);
    background-size: 12px 12px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.16));
}

.sales-eyebrow {
    color: #4f68f5;
    background: transparent;
    border: 0;
    padding: 0;
}

.sales-stat-card,
.sales-impact-card,
.sales-detail-card,
.sales-proof-card {
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.sales-stat-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
}

.sales-stat-card strong {
    display: block;
    color: #111827;
    font-size: 1.8rem;
}

.sales-stat-card span {
    display: block;
    color: #475569;
    line-height: 1.7;
    margin-top: 10px;
}

.sales-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.sales-hero-secondary::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 12px;
    border-radius: 999px;
    background: #4f68f5;
}

.sales-stage-wrap {
    position: relative;
    min-height: 560px;
}

.sales-orbit {
    position: absolute;
    border-radius: 50%;
}

.sales-orbit-one {
    width: 430px;
    height: 430px;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #4f68f5;
}

.sales-orbit-two {
    width: 322px;
    height: 322px;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    opacity: 1;
    background:
        repeating-linear-gradient(135deg,
            rgba(79, 104, 245, 0.4) 0,
            rgba(79, 104, 245, 0.4) 2px,
            transparent 2px,
            transparent 6px);
}

.sales-floating-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    color: #111827;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.sales-chip-left {
    top: 270px;
    left: 24px;
}

.sales-chip-right {
    top: 52px;
    left: 132px;
}

.sales-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4f68f5;
}

.sales-flow-upsell {
    top: 230px;
    left: 530px;
}


.sales-flow-discover {
    top: 420px;
    left: 380px;
}

.sales-pulse-lead {
    top: 420px;
    left: 280px;
}

.sales-stage-panel {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.sales-stage-top {
    display: none;
}

.sales-stage-grid {
    position: relative;
    min-height: 560px;
}

.sales-stage-primary,
.sales-stage-secondary,
.sales-stage-summary {
    background: transparent;
    border: 0;
    padding: 0;
}

.sales-stage-secondary,
.sales-stage-summary {
    display: none;
}

.sales-stage-image {
    display: none;
}

.sales-stage-image img,
.sales-proof-image,
.sales-proof-card-image,
.sales-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-wave-shell {
    position: absolute;
    top: 170px;
    left: 50%;
    width: 112px;
    height: 112px;
    min-height: 0;
    border-radius: 50%;
    background: #4f68f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    box-shadow: 0 20px 45px rgba(79, 104, 245, 0.24);
}

.sales-wave-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 52px;
}

.sales-wave-bars span {
    display: block;
    width: 7px;
    border-radius: 999px;
    background: #fff;
    animation: salesBars 1.5s ease-in-out infinite;
    transform-origin: center;
}

.sales-wave-bars span:nth-child(1) {
    height: 56%;
}

.sales-wave-bars span:nth-child(2) {
    height: 84%;
    animation-delay: 0.15s;
}

.sales-wave-bars span:nth-child(3) {
    height: 64%;
    animation-delay: 0.3s;
}

.sales-wave-bars span:nth-child(4) {
    height: 100%;
    animation-delay: 0.45s;
}

.sales-wave-bars span:nth-child(5) {
    height: 70%;
    animation-delay: 0.6s;
}

.sales-wave-bars span:nth-child(6) {
    height: 48%;
    animation-delay: 0.75s;
}

.sales-flow-row {
    display: block;
    margin-top: 0;
}

.sales-flow-row span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: 0.95rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.sales-flow-row span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4f68f5;
}

.sales-flow-row:first-of-type span:first-child {
    right: 20px;
    top: 318px;
}

.sales-flow-row:first-of-type span:last-child {
    left: 148px;
    bottom: 26px;
}

.sales-flow-row:last-of-type span:first-child {
    left: 24px;
    top: 262px;
}

.sales-flow-row:last-of-type span:last-child {
    right: 20px;
    top: 82px;
}

.sales-mini-label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    color: #67e8f9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sales-stage-secondary h3,
.sales-impact-card h3,
.sales-proof-card h3,
.sales-visual-copy h3 {
    color: #fff;
    margin-top: 18px;
    font-size: 1.4rem;
    line-height: 1.35;
}

.sales-transcript {
    display: none;
}

.sales-chat {
    padding: 14px 16px;
    border-radius: 18px;
    line-height: 1.7;
    max-width: 90%;
}

.sales-chat-user {
    margin-left: auto;
    color: #e0f2fe;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.18);
}

.sales-chat-ai {
    color: #cbd5e1;
    background: rgba(8, 64, 94, 0.32);
    border: 1px solid rgba(34, 211, 238, 0.16);
}

.sales-stage-summary {
    display: none;
}

.sales-summary-label {
    color: #fff;
    font-weight: 700;
}

.sales-stage-summary ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.sales-stage-summary li {
    padding-left: 18px;
    position: relative;
    line-height: 1.7;
}

.sales-stage-summary li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22d3ee;
}

.sales-marquee {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ecfeff, #f8fbff);
    border: 1px solid #dbeafe;
    overflow: hidden;
}

.sales-marquee>span {
    color: #0f172a;
    font-weight: 700;
    white-space: nowrap;
}

.sales-marquee-track {
    display: flex;
    gap: 14px;
    min-width: max-content;
    animation: salesTicker 24s linear infinite;
}

.sales-marquee-track span,
.sales-benefit-list span {
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dbeafe;
    color: #1e3a8a;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}

.sales-impact-card,
.sales-detail-card {
    min-height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #dbeafe;
}

.sales-impact-card strong,
.sales-detail-card strong {
    display: block;
    color: #1d4ed8;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sales-impact-card h3,
.sales-detail-card strong,
.sales-proof-card h3 {
    color: #0f172a;
}

.sales-impact-card p,
.sales-detail-card p,
.sales-proof-card p,
.sales-visual-copy p {
    margin-top: 14px;
    color: #475569;
    line-height: 1.8;
}

.sales-tab {
    width: 100%;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.72);
    text-align: left;
    color: #fff;
    transition: 0.25s ease;
}

.sales-tab strong {
    font-weight: 700;
}

.sales-tab span {
    display: block;
    margin-top: 8px;
    color: #cbd5e1;
    line-height: 1.7;
}

.sales-tab:hover,
.sales-tab.active {
    border-color: rgba(103, 232, 249, 0.4);
    background: rgba(8, 64, 94, 0.44);
    transform: translateY(-1px);
}

.sales-visual-screen {
    position: relative;
    min-height: 620px;
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(6, 12, 26, 0.96), rgba(12, 23, 43, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 32px 80px rgba(2, 8, 23, 0.34);
    overflow: hidden;
}

.sales-visual-copy {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.sales-visual-copy.active {
    opacity: 1;
    transform: translateY(0);
}

.sales-benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.sales-visual-image-wrap {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    top: 250px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.72);
}

.sales-visual-image {
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.sales-visual-image.is-switching {
    opacity: 0.35;
    transform: scale(0.98);
}

.sales-proof-media {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.sales-proof-badge {
    position: absolute;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.sales-proof-badge-top {
    top: 26px;
    left: 24px;
}

.sales-proof-badge-bottom {
    right: 24px;
    bottom: 26px;
}

.sales-proof-scroll {
    position: relative;
    height: 220vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sales-proof-sticky {
    position: sticky;
    top: 90px;
    overflow: hidden;
    padding: 110px 0 80px;
}

.sales-proof-track-wrap {
    overflow: hidden;
}

.sales-proof-track {
    display: flex;
    gap: 24px;
    width: max-content;
    transition: transform 0.08s linear;
    will-change: transform;
}

.sales-proof-card {
    width: min(82vw, 390px);
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #dbeafe;
    flex: 0 0 auto;
}

.sales-proof-card-image {
    min-height: 260px;
    border-radius: 22px;
}

.sales-cta {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 28%),
        linear-gradient(180deg, #07111e, #0b1e36 100%);
}

@keyframes salesBars {

    0%,
    100% {
        transform: scaleY(0.84);
        opacity: 0.86;
    }

    50% {
        transform: scaleY(1.06);
        opacity: 1;
    }
}

@keyframes salesTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .sales-stage-wrap {
        min-height: 520px;
    }

    .sales-orbit-one {
        width: 390px;
        height: 390px;
    }

    .sales-orbit-two {
        width: 292px;
        height: 292px;
        top: 82px;
    }
}

@media (max-width: 768px) {
    .sales-hero {
        padding-bottom: 64px;
    }

    .sales-stage-wrap {
        min-height: 430px;
    }

    .sales-orbit-one {
        width: 280px;
        height: 280px;
        top: 56px;
    }

    .sales-orbit-two {
        width: 210px;
        height: 210px;
        top: 92px;
    }

    .sales-wave-shell {
        top: 148px;
        width: 88px;
        height: 88px;
    }

    .sales-flow-row span,
    .sales-floating-chip {
        padding: 10px 12px;
        font-size: 0.78rem;
    }

    .sales-chip-left {
        left: 0;
        top: 218px;
    }

    .sales-chip-right {
        left: 56px;
        top: 30px;
    }

    .sales-flow-row:first-of-type span:first-child {
        right: 0;
        top: 252px;
    }

    .sales-flow-row:first-of-type span:last-child {
        left: 78px;
        bottom: 14px;
    }

    .sales-flow-row:last-of-type span:first-child {
        left: 0;
        top: 200px;
    }

    .sales-flow-row:last-of-type span:last-child {
        right: 0;
        top: 56px;
    }

    .sales-marquee {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 28px;
    }

    .sales-proof-media {
        min-height: 420px;
    }

    .sales-proof-scroll {
        height: auto;
        padding: 90px 0;
    }

    .sales-proof-sticky {
        position: static;
        padding: 0;
    }

    .sales-proof-track-wrap {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .sales-proof-track {
        transform: none !important;
        padding-bottom: 4px;
    }

    .sales-proof-card {
        width: 84vw;
    }

    .sales-flow-discover {
        top: 360px;
        left: 260px;
    }
}