/*
(c) HAXTER CORPORATION GLOBAL | ALL RIGHTS RESERVED.
*/
.h27pro_carousel {
    --h27pro_blue: #0067b8;
    --h27pro_blue_hover: #00599f;
    --h27pro_ink: #15171a;
    --h27pro_muted: #4d5560;
    --h27pro_border: #dfe3e8;
    --h27pro_max_width: 1600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--h27pro_ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", SegoeUI, "Helvetica Neue", Arial, sans-serif;
}

.h27pro_carousel,
.h27pro_carousel * {
    box-sizing: border-box;
}

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

.h27pro_viewport {
    width: 100%;
    overflow: hidden;
}

.h27pro_track {
    display: flex;
    width: 100%;
    transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.h27pro_slide {
    --h27pro_accent: var(--h27pro_blue);
    min-width: 100%;
    min-height: clamp(540px, 34vw, 650px);
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.h27pro_inner {
    width: min(var(--h27pro_max_width), calc(100% - 96px));
    min-height: inherit;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(40px, 5vw, 88px);
    position: relative;
    z-index: 1;
}

.h27pro_content {
    max-width: 690px;
    padding: 78px 0;
    position: relative;
    z-index: 2;
}

.h27pro_eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin: 0 0 24px;
    padding: 0 0 0 12px;
    border-left: 3px solid var(--h27pro_accent);
    color: color-mix(in srgb, var(--h27pro_accent) 82%, #111111 18%);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 650;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.h27pro_title {
    max-width: 680px;
    margin: 0;
    color: inherit;
    font-size: clamp(42px, 3.25vw, 62px);
    line-height: 1.04;
    font-weight: 520;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.h27pro_text {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--h27pro_muted);
    font-size: clamp(16px, 1.05vw, 19px);
    line-height: 1.58;
    font-weight: 400;
}

.h27pro_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
}

.h27pro_carousel .h27pro_primary,
.h27pro_carousel .h27pro_secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.h27pro_carousel .h27pro_primary {
    padding: 0 22px;
    border: 1px solid var(--h27pro_accent);
    background: var(--h27pro_accent);
    color: #ffffff;
}

.h27pro_carousel .h27pro_primary:hover,
.h27pro_carousel .h27pro_primary:focus-visible {
    border-color: var(--h27pro_blue_hover);
    background: var(--h27pro_blue_hover);
}

.h27pro_carousel .h27pro_secondary {
    gap: 8px;
    color: var(--h27pro_accent);
}

.h27pro_carousel .h27pro_secondary::after {
    content: "→";
    transition: transform 160ms ease;
}

.h27pro_carousel .h27pro_secondary:hover::after,
.h27pro_carousel .h27pro_secondary:focus-visible::after {
    transform: translateX(4px);
}

.h27pro_carousel .h27pro_primary:focus-visible,
.h27pro_carousel .h27pro_secondary:focus-visible,
.h27pro_control:focus-visible,
.h27pro_dot:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.h27pro_media {
    min-width: 0;
    min-height: 430px;
    display: grid;
    place-items: center;
    position: relative;
}

.h27pro_picture {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.h27pro_image {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
    object-position: center;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
}

/* Ecosystem: native composition, without a repeated logo or decorative oval. */
.h27pro_theme_ecosystem {
    --h27pro_accent: #0067b8;
    background:
        radial-gradient(circle at 82% 30%, rgba(0, 103, 184, 0.08), transparent 29%),
        linear-gradient(110deg, #ffffff 0%, #f7f9fb 56%, #eef4f9 100%);
}

.h27pro_ecosystem_map {
    width: min(660px, 100%);
    aspect-ratio: 1.28;
    position: relative;
    background-image:
        linear-gradient(rgba(0, 103, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 103, 184, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.h27pro_ecosystem_map::before,
.h27pro_ecosystem_map::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    background: rgba(0, 103, 184, 0.22);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.h27pro_ecosystem_map::before {
    width: 72%;
    height: 1px;
}

.h27pro_ecosystem_map::after {
    width: 1px;
    height: 72%;
}

.h27pro_hub,
.h27pro_node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(0, 103, 184, 0.25);
    color: #17324a;
}

.h27pro_hub {
    width: 188px;
    height: 110px;
    top: 50%;
    left: 50%;
    flex-direction: column;
    transform: translate(-50%, -50%);
}

.h27pro_hub strong {
    color: #0b1620;
    font-size: 22px;
    font-weight: 620;
    letter-spacing: -0.025em;
}

.h27pro_hub span {
    margin-top: 7px;
    color: #587083;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.h27pro_node {
    min-width: 110px;
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.h27pro_node:nth-child(2) { top: 7%; left: 10%; }
.h27pro_node:nth-child(3) { top: 7%; right: 10%; }
.h27pro_node:nth-child(4) { top: 45%; left: 0; }
.h27pro_node:nth-child(5) { top: 45%; right: 0; }
.h27pro_node:nth-child(6) { bottom: 7%; left: 10%; }
.h27pro_node:nth-child(7) { right: 10%; bottom: 7%; }

/* Suites: the horizontal asset is the slide background, never a nested card. */
.h27pro_theme_suites {
    --h27pro_accent: #0d2e8c;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 243, 250, 0.94) 36%, rgba(197, 205, 234, 0.55) 58%, rgba(0, 5, 50, 0.18) 100%),
        url("https://cdn.haxtercorp.com/h26/haxtercorporation-suites-home-carousel.webp") center right / cover no-repeat;
    color: #000532;
}

.h27pro_theme_suites .h27pro_inner {
    grid-template-columns: 1fr;
}

.h27pro_theme_suites .h27pro_content {
    max-width: 690px;
}

.h27pro_theme_suites .h27pro_text {
    color: #2a3448;
}

/* CreativeDesk: dark asset and theme merge without a floating frame. */
.h27pro_theme_creativedesk {
    --h27pro_accent: #927dff;
    background:
        radial-gradient(circle at 84% 18%, rgba(126, 91, 255, 0.28), transparent 34%),
        radial-gradient(circle at 66% 90%, rgba(30, 98, 255, 0.17), transparent 41%),
        linear-gradient(100deg, #070a16 0%, #0c1128 52%, #1d1452 100%);
    color: #ffffff;
}

.h27pro_theme_creativedesk .h27pro_text {
    color: rgba(255, 255, 255, 0.82);
}

.h27pro_theme_creativedesk .h27pro_image {
    width: 112%;
    max-width: none;
    max-height: 525px;
    object-fit: cover;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 100%);
}

/* Cloud: white pixels blend into the light slide; no shadow exposes the canvas. */
.h27pro_theme_cloud {
    --h27pro_accent: #0067b8;
    background:
        radial-gradient(circle at 81% 49%, rgba(84, 164, 219, 0.16), transparent 34%),
        linear-gradient(105deg, #ffffff 0%, #f8fbfe 54%, #edf6fd 100%);
}

.h27pro_theme_cloud .h27pro_image {
    max-height: 430px;
    mix-blend-mode: multiply;
}

/* ARIA: its white editorial asset lives directly on a white editorial slide. */
.h27pro_theme_aria {
    --h27pro_accent: #111111;
    background: linear-gradient(105deg, #ffffff 0%, #ffffff 57%, #f2f2f2 100%);
}

.h27pro_theme_aria .h27pro_image {
    width: min(760px, 100%);
    max-height: 475px;
}

/* Alvira: product image is integrated, not elevated as a white card. */
.h27pro_theme_alvira {
    --h27pro_accent: #0067b8;
    background: #ffffff;
}

.h27pro_theme_alvira::after {
    content: "";
    position: absolute;
    width: 45vw;
    height: 45vw;
    max-width: 720px;
    max-height: 720px;
    right: -10vw;
    bottom: -28vw;
    border: 1px solid rgba(0, 103, 184, 0.12);
    transform: rotate(22deg);
    z-index: -1;
}

.h27pro_theme_alvira .h27pro_image {
    width: min(700px, 100%);
    max-height: 500px;
    mix-blend-mode: multiply;
}

/* Systems: both names are represented; Kaltron's oversized white canvas is cropped. */
.h27pro_theme_systems {
    --h27pro_accent: #1f2c38;
    background: linear-gradient(105deg, #ffffff 0%, #f8f9fa 55%, #eef1f4 100%);
}

.h27pro_systems_visual {
    width: min(700px, 100%);
    display: grid;
    gap: 30px;
}

.h27pro_raios_wordmark {
    color: #111820;
    font-size: clamp(58px, 5vw, 88px);
    line-height: 1;
    font-weight: 250;
    letter-spacing: -0.055em;
}

.h27pro_raios_wordmark strong {
    color: #0067b8;
    font-weight: 620;
}

.h27pro_systems_rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #0067b8, rgba(0, 103, 184, 0));
}

.h27pro_kaltron_crop {
    width: 100%;
    aspect-ratio: 4.9;
    background-image: url("https://cdn.haxtercorp.com/_images/kaltronOS.png");
    background-repeat: no-repeat;
    background-size: 148.4% auto;
    background-position: 50% 54.6%;
}

.h27pro_systems_caption {
    margin: -10px 0 0;
    color: #68727c;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.h27pro_controls {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--h27pro_border);
    background: #ffffff;
    color: #101214;
}

.h27pro_control {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.h27pro_arrow {
    display: block;
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
}

.h27pro_pause_icon {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.h27pro_dots {
    display: flex;
    align-items: center;
    gap: 13px;
}

.h27pro_dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid #22272b;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease;
}

.h27pro_dot:hover {
    transform: scale(1.25);
}

.h27pro_dot.is-active {
    background: #22272b;
}

@media (max-width: 1120px) {
    .h27pro_inner {
        width: min(var(--h27pro_max_width), calc(100% - 64px));
        grid-template-columns: 1fr;
        gap: 0;
    }

    .h27pro_content {
        max-width: 780px;
        padding: 64px 0 28px;
    }

    .h27pro_media {
        min-height: 370px;
        padding-bottom: 46px;
    }

    .h27pro_ecosystem_map,
    .h27pro_systems_visual {
        max-width: 680px;
    }

    .h27pro_theme_suites .h27pro_content {
        padding-bottom: 64px;
    }
}

@media (max-width: 700px) {
    .h27pro_slide {
        min-height: auto;
    }

    .h27pro_inner {
        width: calc(100% - 36px);
    }

    .h27pro_content {
        padding: 48px 0 24px;
    }

    .h27pro_title {
        font-size: clamp(36px, 11vw, 48px);
    }

    .h27pro_text {
        font-size: 16px;
    }

    .h27pro_actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .h27pro_carousel .h27pro_primary,
    .h27pro_carousel .h27pro_secondary {
        width: 100%;
    }

    .h27pro_media {
        min-height: 300px;
        padding-bottom: 34px;
    }

    .h27pro_ecosystem_map {
        transform: scale(0.94);
    }

    .h27pro_node {
        min-width: 82px;
        padding-inline: 9px;
        font-size: 11px;
    }

    .h27pro_hub {
        width: 150px;
        height: 92px;
    }

    .h27pro_theme_suites {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 239, 250, 0.94) 65%, rgba(197, 205, 234, 0.72) 100%),
            url("https://cdn.haxtercorp.com/h26/haxtercorporation-suites-home-carousel.webp") center / cover no-repeat;
    }

    .h27pro_theme_creativedesk .h27pro_image {
        width: 125%;
    }

    .h27pro_theme_cloud .h27pro_image,
    .h27pro_theme_aria .h27pro_image,
    .h27pro_theme_alvira .h27pro_image {
        max-height: 310px;
    }

    .h27pro_controls {
        min-height: 70px;
        gap: 12px;
        padding-inline: 10px;
    }

    .h27pro_dots {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .h27pro_track,
    .h27pro_carousel .h27pro_primary,
    .h27pro_carousel .h27pro_secondary,
    .h27pro_carousel .h27pro_secondary::after,
    .h27pro_dot {
        transition: none;
    }
}