/* Code Stars public-site integration layer for the local CoreBiz runtime. */
:root {
    --default-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --heading-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --nav-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --background-color: #ffffff;
    --default-color: #505760;
    --heading-color: #17212b;
    --accent-color: #1d67d8;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-color: #202933;
    --nav-hover-color: #1d67d8;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #202933;
    --nav-dropdown-hover-color: #1d67d8;
}

.light-background {
    --background-color: #f6f8fb;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #17212b;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #17212b;
    --contrast-color: #ffffff;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-color), transparent 55%);
    outline-offset: 3px;
}

.header .topbar {
    padding: 8px 0;
    min-height: 40px;
}

/* CoreBiz collapses the topbar by height on scroll. Reset our minimum height
   too, otherwise the contact text disappears but leaves a 40px dark gap. */
.scrolled .header .topbar {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.header .topbar a {
    color: inherit;
}

.header .topbar .topbar-note {
    font-size: 13px;
    opacity: .82;
    color: rgba(255, 255, 255, .84);
}

.header .branding {
    min-height: 78px;
    transition: min-height .35s ease, padding .35s ease;
}

.scrolled .header .branding {
    min-height: 66px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.scrolled .header .logo img {
    max-height: 34px;
}

.header .logo img,
.footer-brand-link img {
    object-fit: contain;
    border-radius: 11px;
    margin-right: 12px;
}

.header .logo .sitename,
.footer .sitename {
    font-weight: 750;
    letter-spacing: -.035em;
}

@media (min-width: 1200px) {
    .navmenu li:last-child > a.nav-contact-cta,
    .navmenu li:last-child > a.nav-contact-cta:focus {
        margin-left: 10px;
        padding: 10px 18px;
        border-radius: 8px;
        background: var(--accent-color);
        color: #fff;
        font-weight: 700;
        box-shadow: 0 9px 22px rgba(29, 103, 216, .2);
    }

    .navmenu li:last-child > a.nav-contact-cta:hover,
    .navmenu li:last-child > a.nav-contact-cta.active,
    .navmenu li:last-child > a.nav-contact-cta.active:focus {
        background: #1558bb;
        color: #fff;
        transform: translateY(-1px);
    }
}

@media (max-width: 1199px) {
    .navmenu a.nav-contact-cta,
    .navmenu a.nav-contact-cta:focus {
        margin: 10px 14px 4px;
        padding: 12px 16px;
        border-radius: 8px;
        background: var(--accent-color);
        color: #fff;
        font-weight: 700;
    }

    .navmenu a.nav-contact-cta:hover,
    .navmenu a.nav-contact-cta.active,
    .navmenu a.nav-contact-cta.active:focus {
        background: #1558bb;
        color: #fff;
    }
}

.section-kicker,
.hero .eyebrow {
    display: inline-block;
    color: var(--accent-color);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero .hero-content .content h1 {
    max-width: 720px;
    letter-spacing: -.045em;
}

.hero .hero-content .content p {
    max-width: 650px;
}

.hero .hero-content .hero-image {
    padding: 64px 0 90px;
}

.hero .hero-content .hero-image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 24px;
}

.hero .hero-content .hero-image .floating-card {
    left: -24px;
    bottom: 45px;
    min-width: 340px;
    border-radius: 20px;
}

.hero .hero-content .hero-image .floating-card .metric .number {
    color: var(--accent-color);
    font-weight: 750;
}

.hero .hero-features .feature-item {
    height: 100%;
}

.about-image img,
.service-details .service-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(23, 33, 43, .12);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    letter-spacing: -.045em;
    line-height: 1.12;
    margin-bottom: 24px;
}

.about-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0;
    padding: 26px 0;
    border-top: 1px solid rgba(23, 33, 43, .1);
    border-bottom: 1px solid rgba(23, 33, 43, .1);
}

.about-stat-row div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-stat-row strong {
    color: var(--accent-color);
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    line-height: 1.1;
}

.about-stat-row span {
    color: var(--default-color);
    font-size: .83rem;
    margin-top: 7px;
}

.about-content .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.services .service-item {
    height: 100%;
}

.product-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.product-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 17px;
    border: 1px solid rgba(23, 33, 43, .13);
    border-radius: 999px;
    background: #fff;
    color: #69737e;
    font-size: .82rem;
    font-weight: 700;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.product-filter-button:hover,
.product-filter-button.active {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: #fff;
}

.products-slider-shell {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 14px;
}

.products-slider {
    display: flex;
    gap: 20px;
    min-width: 0;
    padding: 8px 5px 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.products-slider.is-centered {
    justify-content: center;
}

.products-slider-arrow {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(23, 33, 43, .13);
    border-radius: 50%;
    background: #fff;
    color: var(--heading-color);
    box-shadow: 0 10px 26px rgba(23, 33, 43, .08);
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.products-slider-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: #fff;
}

.products-slider-arrow:disabled {
    visibility: hidden;
}

.product-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
}

.product-card.hidden {
    display: none;
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 330px;
    padding: 26px;
    border: 1px solid rgba(23, 33, 43, .11);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(23, 33, 43, .06);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.product-card-inner:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 103, 216, .48);
    box-shadow: 0 20px 46px rgba(23, 33, 43, .12);
}

.product-icon-wrap {
    margin-bottom: 20px;
}

.product-icon,
.product-icon-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 16px;
}

.product-icon {
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(23, 33, 43, .16);
}

.product-icon-placeholder {
    display: grid;
    place-items: center;
    background: #eaf1fb;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.product-card-info {
    flex: 1;
}

.product-card-category {
    display: block;
    margin-bottom: 7px;
    color: var(--accent-color);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card-info h3 {
    margin: 0 0 9px;
    color: var(--heading-color);
    font-size: 1.15rem;
    font-weight: 800;
}

.product-card-info p {
    margin: 0 0 22px;
    color: var(--default-color);
    font-size: .88rem;
    line-height: 1.65;
}

.product-card-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.product-card-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-card-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #eef3f8;
    color: #4e5965;
    font-size: .7rem;
    font-weight: 700;
}

.product-card-arrow {
    flex: 0 0 auto;
    color: #78838f;
    transition: color .25s ease, transform .25s ease;
}

.product-card-inner:hover .product-card-arrow {
    transform: translateX(4px);
    color: var(--accent-color);
}

.products-slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    min-height: 8px;
    margin-top: 6px;
}

.products-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #ccd5df;
    transition: width .25s ease, background-color .25s ease;
}

.products-slider-dot.active {
    width: 24px;
    background: var(--accent-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center;
    gap: 24px;
}

.team-card {
    height: 100%;
    padding: 32px 24px;
    border: 1px solid rgba(23, 33, 43, .1);
    border-radius: 16px;
    background: var(--surface-color);
    text-align: center;
    box-shadow: 0 12px 35px rgba(23, 33, 43, .07);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 103, 216, .42);
    box-shadow: 0 20px 44px rgba(23, 33, 43, .12);
}

.team-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid rgba(29, 103, 216, .13);
    border-radius: 50%;
    background: #eef3f8;
}

.team-avatar img,
.team-avatar-placeholder {
    width: 100%;
    height: 100%;
}

.team-avatar img {
    display: block;
    object-fit: cover;
}

.team-avatar-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #e9f1fc, #f7faff);
    color: var(--accent-color);
    font-size: 1.55rem;
    font-weight: 800;
}

.team-info h4 {
    margin: 0 0 5px;
    color: var(--heading-color);
    font-size: 1.05rem;
    font-weight: 800;
}

.team-role {
    display: block;
    min-height: 2.7em;
    margin-bottom: 18px;
    color: var(--accent-color);
    font-size: .83rem;
    line-height: 1.35;
    font-weight: 650;
}

.team-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    padding-top: 17px;
    border-top: 1px solid rgba(23, 33, 43, .08);
}

.team-socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef3f8;
    color: #66717d;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.team-socials a:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: #fff;
}

.team-socials .social-icon,
.team-socials .social-icon svg,
.team-socials .social-icon img {
    display: block;
    width: 16px;
    height: 16px;
}

.contact .contact-sidebar {
    border-radius: 18px;
}

.contact a {
    color: inherit;
}

.form-status {
    min-height: 24px;
    margin: -18px 0 22px;
    font-size: .95rem;
    font-weight: 650;
}

.form-status.success { color: #087b55; }
.form-status.error { color: #b42336; }

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}
.contact .send-button:disabled { opacity: .65; cursor: wait; }

.footer .footer-brand-link {
    margin-bottom: 18px;
}

.footer-summary {
    max-width: 480px;
    line-height: 1.7;
}

.footer .footer-contact p {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    font-size: .9rem;
    line-height: 1.5;
}

.footer .footer-contact strong {
    flex: 0 0 auto;
    font-size: inherit;
}

.footer .footer-about .footer-contact a {
    min-width: 0;
    color: var(--default-color);
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    overflow-wrap: anywhere;
}

.footer a {
    color: inherit;
}

.footer .credits {
    font-size: .78rem;
    opacity: .7;
}

.value-card-corebiz,
.process-card {
    height: 100%;
    padding: 34px 28px;
    background: var(--surface-color);
    border: 1px solid rgba(23, 33, 43, .08);
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.value-card-corebiz:hover,
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(23, 33, 43, .08);
}

.value-card-corebiz > i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    font-size: 1.45rem;
    margin-bottom: 24px;
}

.value-card-corebiz h3,
.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.value-card-corebiz p,
.process-card p {
    margin: 0;
    line-height: 1.7;
}

.process-card span {
    display: block;
    color: var(--accent-color);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 25px;
}

.compact-cta,
.services-contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 44px 48px;
    border-radius: 20px;
    background: #17212b;
    color: #fff;
}

.compact-cta span,
.services-contact-card span {
    color: #8fbaff;
    font-size: .8rem;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.compact-cta h2,
.services-contact-card h2 {
    color: #fff;
    margin: 8px 0 0;
}

.services-contact-card p {
    color: rgba(255,255,255,.72);
    margin: 10px 0 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: #fff;
    border: 0;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.btn-primary:hover {
    color: #fff;
    background: #1557bd;
    transform: translateY(-2px);
}

.service-details .service-intro h1 {
    letter-spacing: -.045em;
}

.service-details .visual-section {
    scroll-margin-top: 125px;
}

.service-details .alternate-service {
    margin-top: 90px;
}

.service-check-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}

.service-check-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 11px;
    color: var(--default-color);
}

.service-check-list i {
    color: var(--accent-color);
    font-size: 1.15rem;
}

.services-contact-card {
    margin-top: 80px;
}

.product-detail-page {
    background: #fff;
}

.product-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0;
    color: var(--heading-color);
    font-weight: 700;
}

.product-back-link i {
    color: var(--accent-color);
    font-size: 1.15rem;
    transition: transform .25s ease;
}

.product-back-link:hover i {
    transform: translateX(-4px);
}

.product-detail-hero {
    padding: 76px 0;
}

.product-detail-hero-inner {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    align-items: center;
    gap: 52px;
}

.product-detail-app-icon,
.product-detail-icon-placeholder {
    display: grid;
    place-items: center;
    width: 176px;
    height: 176px;
    padding: 14px;
    border: 1px solid rgba(23, 33, 43, .07);
    border-radius: 38px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(23, 33, 43, .14);
}

.product-detail-app-icon img {
    width: 148px;
    height: 148px;
    object-fit: contain;
    border-radius: 29px;
}

.product-detail-icon-placeholder {
    color: var(--accent-color);
    font-size: 4rem;
}

.product-detail-intro h1 {
    margin: 0 0 16px;
    font-size: clamp(2.7rem, 6vw, 5.25rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.product-detail-intro > p {
    max-width: 760px;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 12%);
    font-size: 1.15rem;
    line-height: 1.75;
}

.product-platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.product-platform-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(29, 103, 216, .13);
    border-radius: 999px;
    background: rgba(29, 103, 216, .07);
    color: #174f9f;
    font-size: .86rem;
    font-weight: 750;
}

.product-detail-store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.product-store-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 170px;
    padding: 11px 17px;
    border-radius: 10px;
    background: #17212b;
    color: #fff;
    box-shadow: 0 12px 30px rgba(23, 33, 43, .14);
}

.product-store-button:hover {
    color: #fff;
    background: var(--accent-color);
    transform: translateY(-2px);
}

.product-store-button > i {
    font-size: 1.7rem;
}

.product-store-button span {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.05;
}

.product-store-button small { font-size: .64rem; opacity: .75; }
.product-store-button strong { font-size: .95rem; margin-top: 4px; }

.product-screenshots-section {
    overflow: hidden;
}

.product-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
}

.product-section-heading h2,
.product-description-main h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -.045em;
}

.product-section-heading > p {
    max-width: 430px;
    margin: 0 0 5px;
    color: var(--default-color);
    text-align: right;
}

.product-screenshot-strip {
    display: flex;
    gap: 24px;
    width: 100%;
    padding: 4px 2px 26px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(29, 103, 216, .45) #e7edf5;
    scrollbar-width: thin;
}

.product-screenshot-strip::-webkit-scrollbar { height: 8px; }
.product-screenshot-strip::-webkit-scrollbar-track { background: #e7edf5; border-radius: 999px; }
.product-screenshot-strip::-webkit-scrollbar-thumb { background: rgba(29, 103, 216, .45); border-radius: 999px; }

.product-screenshot-card {
    display: flex;
    flex: 0 0 clamp(280px, 29vw, 360px);
    align-items: center;
    justify-content: center;
    height: 570px;
    padding: 28px;
    border: 1px solid rgba(23, 33, 43, .07);
    border-radius: 24px;
    background:
        radial-gradient(circle at 16% 12%, rgba(29, 103, 216, .15), transparent 30%),
        radial-gradient(circle at 84% 88%, rgba(38, 174, 176, .12), transparent 28%),
        #f4f7fb;
    box-shadow: 0 18px 46px rgba(23, 33, 43, .09);
    scroll-snap-align: start;
}

.product-screenshot-card img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(23, 33, 43, .19);
}

.product-description-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.product-description-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(290px, .8fr);
    align-items: start;
    gap: 72px;
}

.product-description-main h2 {
    margin-bottom: 28px;
}

.product-description-copy {
    font-size: 1.08rem;
    line-height: 1.85;
}

.product-info-card {
    padding: 30px;
    border: 1px solid rgba(23, 33, 43, .09);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(23, 33, 43, .08);
}

.product-info-card h3 { font-size: 1.25rem; margin-bottom: 24px; }
.product-info-card dl { margin: 0 0 28px; }
.product-info-card dt { color: #7a838d; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; margin-top: 16px; }
.product-info-card dd { color: var(--heading-color); font-weight: 650; margin: 4px 0 0; }
.product-contact-button { width: 100%; text-align: center; }

.not-found-section {
    min-height: 64vh;
    display: flex;
    align-items: center;
}

.not-found-code {
    color: var(--accent-color);
    font-size: clamp(6rem, 18vw, 12rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.08em;
}

.not-found-section h2 { margin: 28px 0 12px; }
.not-found-section p { margin-bottom: 32px; }

@media (max-width: 991px) {
    .header .branding { min-height: 70px; }
    .hero .hero-content .hero-image .floating-card { left: 20px; }
    .compact-cta, .services-contact-card { align-items: flex-start; flex-direction: column; }
    .product-detail-hero-inner { grid-template-columns: 150px minmax(0, 1fr); gap: 34px; }
    .product-detail-app-icon,
    .product-detail-icon-placeholder { width: 150px; height: 150px; border-radius: 32px; }
    .product-detail-app-icon img { width: 124px; height: 124px; border-radius: 25px; }
    .product-description-grid { grid-template-columns: 1fr; gap: 42px; }
    .product-info-card { max-width: 520px; }
}

@media (max-width: 767px) {
    .header .branding .container,
    .hero .container,
    .portfolio-details .container {
        width: 100%;
        max-width: 100%;
    }

    .header .topbar .contact-info { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .header .topbar .contact-info .ms-4 { margin-left: 0 !important; }
    .header .logo img { width: 40px; height: 40px; }
    .header .logo .sitename { font-size: 1.35rem; }
    .mobile-nav-toggle {
        display: block !important;
        color: var(--nav-color) !important;
        position: relative;
        z-index: 10000;
    }
    .hero .hero-content .row > * { min-width: 0; }
    .hero .hero-content .content {
        width: 100%;
        max-width: calc(100vw - 24px);
        margin-inline: auto;
        overflow: hidden;
        padding: 54px 0 20px;
    }
    .hero .eyebrow { max-width: 100%; font-size: .68rem; line-height: 1.55; white-space: normal; }
    .hero .hero-content .content h1 { max-width: 100%; font-size: 2.15rem; line-height: 1.12; overflow-wrap: anywhere; }
    .hero .hero-content .content p { max-width: 100%; font-size: 1rem; overflow-wrap: anywhere; }
    .hero .hero-content .content .cta-group { flex-direction: column; align-items: stretch; gap: 18px; }
    .hero .hero-content .content .cta-group .btn-primary { width: 100%; text-align: center; }
    .hero .hero-content .content .cta-group .btn-secondary { justify-content: center; }
    .hero .hero-content .hero-image { padding-top: 10px; }
    .hero .hero-content .hero-image .floating-card { position: relative; left: auto; bottom: auto; min-width: 0; margin: -36px 16px 0; }
    .hero .hero-content .hero-image .floating-card .card-content { flex-direction: row; justify-content: space-around; }
    .about-stat-row { grid-template-columns: 1fr; gap: 18px; }
    .product-filter-tabs { gap: 6px; margin-bottom: 30px; }
    .product-filter-button { padding: 7px 12px; font-size: .76rem; }
    .products-slider-shell { display: block; }
    .products-slider-arrow { display: none; }
    .products-slider { padding-inline: 2px; }
    .product-card { flex-basis: min(82vw, 290px); }
    .compact-cta, .services-contact-card { padding: 34px 26px; }
    .product-back-link { margin: 22px 0; }
    .product-detail-hero { padding: 56px 0; }
    .product-detail-hero-inner { grid-template-columns: 1fr; justify-items: center; gap: 30px; text-align: center; }
    .product-detail-intro { width: 100%; min-width: 0; }
    .product-detail-intro h1 { font-size: clamp(2.65rem, 13vw, 4rem); overflow-wrap: anywhere; }
    .product-detail-intro > p { font-size: 1rem; }
    .product-platform-badges,
    .product-detail-store-links { justify-content: center; }
    .product-detail-store-links { flex-direction: column; align-items: stretch; max-width: 340px; margin-inline: auto; margin-top: 28px; }
    .product-store-button { width: 100%; justify-content: center; }
    .product-section-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
    .product-section-heading > p { text-align: left; }
    .product-screenshot-card { flex-basis: min(80vw, 320px); height: 520px; padding: 20px; }
    .product-description-section { padding-top: 74px; padding-bottom: 74px; }
    .product-info-card { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
