:root {
    --hero-shell-max-width: 1380px;
    --hero-content-width: 640px;
    --shared-header-height: 40px;
}

html,
body {
    overflow-x: hidden;
}

body>section {
    box-sizing: border-box;
    margin-inline: 0;
    padding-inline: clamp(20px, 4vw, 40px);
    min-height: 95vh;
    display: flex;
    align-items: center;
}

body>section+section {
    --section-gap: clamp(36px, 5vw, 75px);
    padding: var(--section-gap) clamp(10px, 4vw, 40px);
}

#hero-section,
#metrics-banner,
#cta-banner {
    margin-inline: 0;
    padding-inline: 0;
}

#hero-section+#metrics-banner {
    margin-top: 0;
}

#hero-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    margin-top: var(--shared-header-height);
    min-height: calc(100dvh - var(--shared-header-height));
    height: calc(100dvh - var(--shared-header-height));
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/images/home/hero/c-logo-bg.jpg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    pointer-events: none;
}

#hero-section::after {
    content: "";
    position: absolute;
    top: 85px;
    right: 0;
    bottom: auto;
    width: min(56vw, 1080px);
    height: min(88%, 760px);
    z-index: 1;
    background-image: url('/images/home/hero/manifold-with-text.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    pointer-events: none;
}

#hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: min(1460px, 90%);
    width: 100%;
    margin: 0 auto;
}

.hero-float-left {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.hero-title {
    align-self: flex-start;
    display: inline-block;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    color: var(--primary-color-);
    font-size: clamp(3rem, 5vw, 6.25rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    font-weight: 800;
    border-bottom: 5px solid transparent;
    border-image-slice: 1;
    text-shadow: -3px -3px 0 #ffffff82, 3px -3px 0 #ffffff82, -3px 3px 0 #ffffff82, 3px 3px 0 #ffffff82;
    /*border-image-source: var(--header-border-faded-, linear-gradient(120deg, transparent 0%, rgba(193, 255, 94, 0) 12%, rgba(193, 255, 94, 0.95) 45%, rgba(193, 255, 94, 1) 55%, rgba(193, 255, 94, 0) 88%, transparent 100%));*/
}

#hero-subtext {
    color: #0f2345;
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    line-height: 1.35;
    font-weight: 500;
    max-width: 34ch;
}

#hero-disclosure {
    color: rgba(23, 43, 77, 0.72);
    font-size: clamp(0.68rem, 0.75vw, 0.84rem);
    line-height: 1.35;
    letter-spacing: 0.01em;
    max-width: 48ch;
}

#hero-btn-wrapper {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 20px 40px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, scale .3 ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cta-btn:hover {
    transform: scale(1.01) !important;
    opacity: 0.8 !important;
    color: var(--accent-color-);
}

.cta-btn#hero-secondary-btn {
    background: var(--translucent-white-);
    border: var(--background-gray-);
    border-width: 2px;
    box-shadow: var(--box-shadow-);
    color: var(--primary-color-);
    padding-left: 25px;
    padding-right: 25px;
}

#features {
    width: 100%;
    min-height: 500px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    max-width: 22ch;
    text-wrap: balance;
    font-weight: 800;
    text-align: center;
    margin: 50px auto;
    color: var(--primary-color-);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    text-wrap: balance;
    width: 80%;
    margin: 0 auto;
}

.features-cards-wrapper {
    width: min(1380px, 92%);
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.features-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 18px;
}

.feature-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#real-time-status-feature {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.feature-icon--add-hours {
    position: relative;
    overflow: visible;
    width: auto;
    height: 120px;
}

.add-hours-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: auto;
    min-width: 128px;
    padding: 15px 18px;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    color: var(--primary-color-);
    background:
        linear-gradient(var(--background-color-), var(--background-color-)) padding-box,
        linear-gradient(120deg, #44a6ff 0%, #00e1ff 32%, #6dff79 58%, #2c65ff 80%, #44a6ff 100%) border-box;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 10px 24px rgba(68, 166, 255, 0.24);
    animation: attentionCueBorderFlow 3.2s linear infinite, attentionCueGlow 2.1s ease-in-out infinite;
}

.add-hours-demo-btn svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
}

.add-hours-demo-btn:hover {
    background-position: 0 0, 100% 50%;
}

.add-hours-pointer {
    position: absolute;
    top: 15px;
    right: 5px;
    z-index: 3;
    display: block;
    width: 40px !important;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 0 #244065) drop-shadow(0 0 2px rgba(36, 64, 101, 0.55));
    transform: rotate(-8deg);
    pointer-events: none;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-icon svg {
    /* width: 100%; */
    height: 100%;
    display: block;
}

.feature-text {
    font-size: clamp(1.1rem, 1.4vw, 1.45rem);
    font-weight: 700;
    color: var(--primary-color-);
}

.feature-details {
    font-size: clamp(0.96rem, 1.05vw, 1.08rem);
    line-height: 1.45;
    color: #244065;
    max-width: 26ch;
}

.feature-status-demo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.status-bar-wrapper {
    position: relative;
    overflow: visible;
    z-index: 0;
}

.status-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    background: #d9dde5;
    height: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: white 1px solid;
    box-shadow: 0 0 2px 1px #00000059;
    max-width: none;
    width: 100%;
    margin: 10px auto;
}

.status-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 2px 3px 0px 3px rgb(255 255 255 / 35%);
    pointer-events: none;
    border-radius: 10px;
    z-index: 2;
}

.status-bar-wrapper::after {
    content: attr(data-label);
    position: absolute;
    top: -20px;
    right: 0%;
    background: var(--primary-color-);
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.status-bar-wrapper--lower-tooltip::after {
    top: -10px !important;
    transform: translateY(12px);
}

.status-bar-wrapper:hover::after {
    opacity: 1;
}

.status-segment {
    flex: 1;
    background-color: #eee;
    position: relative;
    transition: background-color 0.2s ease;
    height: 40px;
    width: 50px;
    transform: rotate(15deg);
    transform-origin: center;
}

.attention-cue::after {
    background: unset !important;
}

.status-segment.complete {
    background-color: var(--primary-color-);
}

.status-segment.current {
    background: linear-gradient(90deg, #44a6ff, #00ffff7a, transparent);
}

.status-segment.current.is-busy {
    background: linear-gradient(120deg, #44a6ff 0%, #00ffff8f 28%, #6dff79 52%, #00d8ffbf 74%, #44a6ff 100%);
    background-size: 240% 240%;
    animation: busySwirl 3.4s linear infinite, busyGlow 2.3s ease-in-out infinite, busyShadowSwirl 2.8s linear infinite;
}

.status-bar.status-bar--busy-complete {
    animation: busyCompleteGlow 2.1s ease-in-out infinite;
    border-color: rgba(109, 255, 121, 0.95);
    box-shadow: 0 0 0 1px rgba(109, 255, 121, 0.45), 0 0 12px rgba(0, 216, 255, 0.45), 0 0 18px rgba(68, 166, 255, 0.32);
}

.status-busy-note {
    margin-top: 0;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

.status-bar-wrapper.has-busy-note {
    z-index: 2;
}

.feature-icon#real-time-status-feature {
    height: 120px !important;
    width: auto;
}

@keyframes busySwirl {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes busyGlow {
    0% {
        filter: saturate(1.05) brightness(1.02);
    }

    50% {
        filter: saturate(1.25) brightness(1.16);
    }

    100% {
        filter: saturate(1.05) brightness(1.02);
    }
}

@keyframes busyShadowSwirl {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 -1px 9px rgba(68, 166, 255, 0.45), 1px 0 10px rgba(0, 255, 255, 0.35);
    }

    25% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 1px 0 10px rgba(68, 166, 255, 0.42), 0 1px 11px rgba(0, 255, 255, 0.37);
    }

    50% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 1px 10px rgba(68, 166, 255, 0.45), -1px 0 11px rgba(0, 255, 255, 0.35);
    }

    75% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), -1px 0 10px rgba(68, 166, 255, 0.42), 0 -1px 10px rgba(0, 255, 255, 0.37);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 -1px 9px rgba(68, 166, 255, 0.45), 1px 0 10px rgba(0, 255, 255, 0.35);
    }
}

@keyframes busyCompleteGlow {
    0% {
        box-shadow: 0 0 0 1px rgba(109, 255, 121, 0.42), 0 0 9px rgba(0, 216, 255, 0.38), 0 0 14px rgba(68, 166, 255, 0.25);
        filter: saturate(1.02) brightness(1.02);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(109, 255, 121, 0.75), 0 0 16px rgba(0, 216, 255, 0.6), 0 0 24px rgba(68, 166, 255, 0.4);
        filter: saturate(1.2) brightness(1.12);
    }

    100% {
        box-shadow: 0 0 0 1px rgba(109, 255, 121, 0.42), 0 0 9px rgba(0, 216, 255, 0.38), 0 0 14px rgba(68, 166, 255, 0.25);
        filter: saturate(1.02) brightness(1.02);
    }
}

.section-title.left-title {
    text-align: left !important;
    margin-left: 0;
    max-width: none;
}

.section-content {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

/* .section-content-left {
    max-width: 60ch;
} */

.content-desc {
    font-size: clamp(1rem, 1.2vw, 1.16rem);
    line-height: 1.6;
    color: #244065;
}

.section-text-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--blue-lowlight-color-);
    text-decoration: none;
    transition: color 160ms ease, border-color 160ms ease;
}

.section-text-link:hover,
.section-text-link:focus-visible {
    color: var(--blue-highlight-color-);
    /* border-bottom-color: currentColor; */
}

.section-text-link--inverse {
    color: var(--almost-white-);
}

.section-text-link--inverse:hover,
.section-text-link--inverse:focus-visible {
    color: var(--neon-green-);
}

.content-desc.large-text {
    font-size: clamp(1.25rem, 1.75vw, 1.5rem);
}

.section-content-right {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.section-content.section-roll-animate>.section-content-left,
.section-content.section-roll-animate>.section-content-right {
    opacity: 0;
    transition: opacity 640ms ease, transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

.section-content.section-roll-animate>.section-content-left {
    transform: translateY(40px);
}

.section-content.section-roll-animate>.section-content-right {
    transform: translateY(40px);
    transition-delay: 200ms;
}

.section-content.section-roll-animate.is-visible>.section-content-left,
.section-content.section-roll-animate.is-visible>.section-content-right {
    opacity: 1;
    transform: translateY(0);
}

.section-content-image {
    width: 100%;
    height: auto;
    display: block;
}

#getting-started .section-content--centered {
    grid-template-columns: 1fr;
    gap: clamp(18px, 3vw, 30px);
    justify-items: center;
    text-align: center;
    width: min(980px, 100%);
}

#getting-started.getting-started-animate .section-content--centered {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

#getting-started.getting-started-animate.is-visible .section-content--centered {
    opacity: 1;
    transform: translateY(0);
}

#getting-started .section-title.left-title {
    text-align: center;
    margin: 0;
}

#getting-started .content-desc {
    max-width: 72ch;
}

#getting-started .onboarding-progress-static {
    width: min(760px, 100%);
}

#dashboard-graphic .section-content--centered {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1280px;
    box-sizing: border-box;
    margin-inline: auto;
    justify-items: center;
}

.dashboard-graphic-img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin-inline: auto;
}

#getting-started .progress-bar {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 100%;
    max-width: 750px;
    height: 54px;
    border-radius: 100px;
    overflow: hidden;
    border: white 1px solid;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
    box-shadow: 0 0 2px 1px #00000059;
    position: relative;
}

#getting-started .progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 2px 3px 0px 3px rgb(255 255 255 / 35%);
    pointer-events: none;
    border-radius: 100px;
    z-index: 3;
}

#getting-started .progress-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 140%;
    min-width: 0;
    background: #eeeeeeb5;
    transform: skewX(-15deg);
    transform-origin: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow: hidden;
}

#getting-started .progress-step span {
    display: block;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: #666;
    text-align: center;
    transform: skewX(15deg);
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#getting-started .progress-step.progress-step--first {
    margin-left: -8px;
    padding-left: 8px;
}

#getting-started .progress-step:last-child {
    margin-right: -8px;
    padding-right: 8px;
}

#getting-started .progress-step.active {
    background: linear-gradient(90deg, #44a6ff, #00ffff7a, transparent);
}

#getting-started .progress-step.active span {
    color: var(--primary-color-);
}

#getting-started .progress-step.completed {
    background: var(--primary-color-);
}

#getting-started .progress-step.completed span {
    color: rgba(255, 255, 255, 0.72);
}

.onboarding-progress-static-note {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color-);
}

#testimonials {
    background: var(--background-color-);
    padding-block: clamp(40px, 8vw, 80px);
}

#testimonials .section-content--centered {
    display: unset;
}

#testimonials .section-title.left-title {
    text-align: center;
    margin-bottom: 8px;
}

.testimonials-grid {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 34px);
}

.testimonial-card {
    background: var(--almost-white-);
    border: 1px solid #d7dbe2;
    border-radius: 30px;
    box-shadow: 0 2px 9px rgba(29, 43, 77, 0.07);
    padding: clamp(30px, 3.2vw, 48px) clamp(24px, 2.8vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 450px;
}

#testimonials {
    margin-top: 0;
}

#testimonials.testimonials-animate .testimonial-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--testimonial-stagger, 0ms);
}

#testimonials.testimonials-animate .testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.testimonial-img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(20, 38, 75, 0.14);
    margin-bottom: 30px;
}

.testimonial-title {
    font-size: clamp(1.7rem, 1.5vw, 2.6rem);
    line-height: 1.18;
    font-weight: 800;
    color: var(--primary-color-);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: clamp(1.3rem, 1.3vw, 2.08rem);
    line-height: 1.42;
    color: var(--text-color-);
}

.testimonial-highlight {
    background: #e7f567;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 34px;
    font-size: clamp(1.15rem, 1.35vw, 1.45rem);
    font-weight: 800;
    color: var(--primary-color-);
}

.testimonial-company {
    font-size: clamp(1.05rem, 1.3vw, 1.35rem);
    color: var(--rich-blue-);
}

#dashboard-graphic {
    position: relative;
    width: 100%;
    padding-inline: clamp(18px, 5vw, 72px);
    padding-top: 0;
    height: auto;
    margin-bottom: 0;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
}

#dashboard-graphic::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .5;
    background:
        radial-gradient(circle, rgba(92, 103, 122, 0.16) 1.45px, transparent 1.7px) 0 0 / 13px 13px,
        linear-gradient(180deg, rgba(214, 219, 228, 0.34) 0%, rgba(241, 244, 248, 0.1) 72%, rgba(246, 247, 248, 0) 100%);
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.94) 42%, rgba(0, 0, 0, 0.52) 78%, transparent 100%);
    pointer-events: none;
}

#dashboard-graphic .section-content--centered {
    position: relative;
    z-index: 1;
    padding: clamp(14px, 2.2vw, 26px);
}

#dashboard-graphic img {
    position: relative;
    z-index: 1;
    width: 100%;
    border: 6px #e9e9e9;
    height: auto;
    border-style: double;
    border-radius: 14px;
    margin: 40px 0;
}

#personal .section-content {
    align-items: start;
}

#personal-left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(16px, 2vw, 26px);
}

#personal .section-title.left-title {
    margin: 0;
}

.personal-headshot {
    height: 300px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

#personal-right-column {
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(14px, 1.5vw, 20px);
}

.personal-bullets {
    margin: 0;
    padding-left: 1.25em;
    font-size: clamp(1.08rem, 1.25vw, 1.24rem);
    line-height: 1.55;
    color: #244065;
}

#secondary-cta .section-title {
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 34px);
}

#secondary-cta-layout {
    align-items: center;
    grid-template-columns: 30% 70%;
}

#secondary-cta-left-column {
    display: flex;
    position: relative;
    justify-content: center;
    order: 2;
}

.secondary-cta-image {
    width: 100%;
    height: auto;
    display: block;
}

#secondary-cta-right-column {
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    order: 1;
}

#secondary-cta-right-column .content-desc {
    max-width: 44ch;
}

.faq-columns {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #d7dbe2;
    border-radius: 14px;
    background: var(--almost-white-);
    box-shadow: 0 4px 10px rgba(29, 43, 77, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
    padding: 18px 20px;
    text-align: left;
    color: var(--primary-color-);
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    font-weight: 800;
}

@media (hover: hover) {
    .faq-question:hover {
        background: rgba(16, 78, 235, 0.04);
    }
}

.faq-question:focus-visible {
    outline: 2px solid rgba(16, 78, 235, 0.45);
    outline-offset: -2px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition: max-height 260ms ease, opacity 220ms ease, padding 260ms ease;
}

.faq-answer p {
    margin: 0;
    color: #244065;
    font-size: clamp(0.96rem, 1.06vw, 1.06rem);
    line-height: 1.55;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    padding: 18px 20px;
}

.personal-bullets,
.personal-bullets li {
    list-style: disc;
}

/* Reusable banner strip */
.banner-strip {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.banner-strip::before {
    content: "";
    position: absolute;
    inset: -12px;
    z-index: 0;
    background-image: linear-gradient(350deg, #0d224d73, #0009), url(/images/home/background/blue-dot-background.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: blur(8px);
    transform: scale(1.03);
    pointer-events: none;
}

.banner-strip-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.banner-strip-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
    font-size: clamp(72px, 18vw, 220px);
    line-height: 1;
    text-align: center;
    font-weight: 800;
    opacity: 5%;
    color: white;
    pointer-events: none;
}

.banner-strip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-strip-stat {
    font-size: clamp(24px, 6vw, 80px);
    font-weight: 700;
    color: var(--almost-white-);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.603);
}

.banner-strip-stat.stat-tick-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-variant-numeric: tabular-nums;
}

.banner-strip-subtext {
    color: var(--neon-green-);
    font-size: 1.25em;
    font-weight: bold;
}

.banner-strip--cta .banner-strip-content {
    min-height: 300px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    text-align: center;
    /* padding: clamp(28px, 5vw, 54px) clamp(18px, 4vw, 30px); */
}

.banner-strip-card--cta {
    gap: 14px;
    max-width: min(860px, 100%);
}

.banner-strip--cta .banner-strip-bg-text {
    font-size: clamp(40px, 10vw, 144px);
    opacity: 7%;
    letter-spacing: 0.03em;
}

.banner-strip--cta .banner-strip-stat {
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.05;
    color: var(--almost-white-);
}

.banner-strip--cta .banner-strip-stat#second-cta-banner-title {
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.05;
    color: var(--neon-green-);
}

.banner-strip--cta .banner-strip-subtext {
    color: var(--almost-white-);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.45;
    max-width: 50ch;
}

.banner-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    margin: 40px 0 0;
    font-size: clamp(1.05rem, 1.4vw, 1.15rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--rich-blue-);
    background: var(--almost-white-);
    border: 2px solid rgba(109, 255, 121, 0.9);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4), 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, opacity 180ms ease;
}

.banner-cta-link:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

#getting-started-signup-link {
    padding: 25px 40px;
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .banner-strip-bg-text {
        font-size: clamp(64px, 14vw, 170px);
    }
}

@media (max-width: 1100px) {
    .features-cards-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card {
        min-height: 500px;
    }
}

@media (max-width: 980px) {
    #hero-section {
        height: auto;
        min-height: calc(100dvh - var(--shared-header-height));
        align-items: flex-end;
    }

    #hero-section::before {
        background-size: auto 74%;
        opacity: 0.7;
    }

    #hero-section::after {
        width: min(72vw, 700px);
        height: min(72%, 520px);
        opacity: 0.85;
        background-position: right top;
        top:0;
    }

    #hero-content-wrapper {
        padding: 32px 18px;
        padding-right: clamp(120px, 24vw, 280px);
    }

    .hero-title {
        font-size: clamp(2.4rem, 8.5vw, 4.2rem);
        width: auto;
        white-space: normal;
        text-wrap: balance;
    }

    .faq-columns {
        grid-template-columns: 1fr;
    }

    .banner-strip {
        min-height: auto;
        height: auto;
        padding: 32px 18px;
    }
}

@media (max-width: 600px) {
    body>section {
        padding-bottom: clamp(44px, 12vw, 72px);
    }

    body>section+section {
        --section-gap: clamp(28px, 8vw, 52px);
        padding-top: var(--section-gap);
    }

    .section-content, #secondary-cta-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-content-right {
        display: contents;
    }

    .section-content .section-title.left-title {
        order: 1;
    }

    .section-content-left {
        order: 2;
        max-width: none;
    }

    .section-content .content-desc {
        order: 3;
    }

    .section-content .section-text-link {
        order: 99;
        margin-top: clamp(18px, 6vw, 28px);
    }

    #calendar .section-content-left {
        order: -1;
    }

    #hero-content-wrapper {
        padding: 18px;
    }

    #hero-btn-wrapper {
        justify-content: center;
    }

    .banner-strip-content {
        gap: 50px !important;
    }

    .features-cards-wrapper {
        width: 100%;
    }

    .features-card {
        padding: 5px;
    }

    .feature-icon {
        max-width: 100%;
    }

    #personal .section-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #personal .section-content-left {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #personal .section-content-right {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    #personal #personal-right-column .content-desc,
    #personal #personal-right-column .personal-bullets {
        order: 0;
    }

    .section-content.section-roll-animate>.section-content-left,
    .section-content.section-roll-animate>.section-content-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    #getting-started .progress-bar {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 44px;
    }

    #getting-started .onboarding-progress-static {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    #getting-started .progress-step span {
        font-size: 0.62rem;
        padding: 0 8px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: auto;
    }

    #secondary-cta .section-content-right {
        display: flex;
        order: 3;
        flex-direction: column;
    }

    #secondary-cta-left-column {
        order: 2;
    }

    #secondary-cta-right-column .content-desc {
        order: 1;
    }

    #book-meeting-link {
        order: 2;
    }

    #secondary-cta-right-column .section-text-link {
        order: 3;
    }

    #secondary-cta-right-column {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 400px) {
    #hero-btn-wrapper.cta-button {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    #testimonials.testimonials-animate .testimonial-card,
    #testimonials.testimonials-animate .testimonial-card.is-visible,
    .section-content.section-roll-animate>.section-content-left,
    .section-content.section-roll-animate>.section-content-right,
    #getting-started.getting-started-animate .section-content--centered,
    #getting-started.getting-started-animate.is-visible .section-content--centered {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .faq-answer {
        transition: none;
    }
}