/* (c) Haxter Corporation | h27-hx26-ms Small Business | All rights reserved. */

:root {
    --hxsb-blue: var(--hx26-blue, #0067b8);
    --hxsb-blue-hover: var(--hx26-blue-hover, #005da6);
    --hxsb-text: var(--hx26-text-color, #1a1a1a);
    --hxsb-muted: var(--hx26-muted-color, #5f6368);
    --hxsb-border: var(--hx26-border, #e5e5e5);
    --hxsb-soft: var(--hx26-soft-bg, #f5f5f5);
    --hxsb-blue-soft: var(--hx26-cloud-bg, #f3f8fd);
    --hxsb-white: #ffffff;
    --hxsb-font: var(--hx26-font-system, -apple-system, BlinkMacSystemFont, "Segoe UI", SegoeUI, Roboto, "Helvetica Neue", Helvetica, Arial, "Montserrat", sans-serif);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--hxsb-text);
    font-family: var(--hxsb-font);
}

.hxsb_page {
    background: #ffffff;
    overflow: hidden;
    font-family: var(--hxsb-font);
}

.hxsb_wrap {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}

.hxsb_hero {
    background: #ffffff;
    border-bottom: 1px solid var(--hxsb-border);
}

.hxsb_hero_inner {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 70px;
    align-items: center;
    padding: 76px 0;
}

.hxsb_kicker {
    margin: 0 0 22px;
    color: var(--hxsb-muted);
    font-size: 13px;
    font-weight: 600;
}

.hxsb_title {
    margin: 0;
    max-width: 860px;
    color: var(--hxsb-text);
    font-size: clamp(46px, 5.2vw, 74px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 500;
}

.hxsb_title span {
    color: var(--hxsb-blue);
}

.hxsb_intro {
    margin: 24px 0 0;
    max-width: 740px;
    color: var(--hxsb-muted);
    font-size: 18px;
    line-height: 1.62;
}

.hxsb_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 34px;
}

.hxsb_btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 0;
    background: var(--hxsb-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.hxsb_btn:hover {
    background: var(--hxsb-blue-hover);
    color: #ffffff;
}

.hxsb_link {
    color: var(--hxsb-blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.hxsb_link:hover {
    text-decoration: underline;
}

.hxsb_panel {
    background: var(--hxsb-blue-soft);
    border: 1px solid var(--hxsb-border);
    padding: 38px;
}

.hxsb_panel_logo {
    width: min(360px, 82%);
    max-height: 96px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 54px;
}

.hxsb_panel_title {
    margin: 0;
    max-width: 470px;
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.hxsb_panel_text {
    margin: 16px 0 0;
    max-width: 500px;
    color: var(--hxsb-muted);
    font-size: 15px;
    line-height: 1.6;
}

.hxsb_panel_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid #d8e6f2;
    border-left: 1px solid #d8e6f2;
}

.hxsb_panel_metric {
    min-height: 104px;
    padding: 18px;
    border-right: 1px solid #d8e6f2;
    border-bottom: 1px solid #d8e6f2;
    background: rgba(255, 255, 255, 0.55);
}

.hxsb_panel_metric strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.hxsb_panel_metric span {
    display: block;
    margin-top: 6px;
    color: var(--hxsb-muted);
    font-size: 13px;
    line-height: 1.4;
}

.hxsb_navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--hxsb-border);
}

.hxsb_navbar_inner {
    width: min(1320px, calc(100% - 80px));
    min-height: 56px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
    overflow-x: auto;
}

.hxsb_navbar a {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
}

.hxsb_navbar a:hover {
    color: var(--hxsb-blue);
    text-decoration: underline;
}

.hxsb_strip {
    border-bottom: 1px solid var(--hxsb-border);
    background: #ffffff;
}

.hxsb_strip_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--hxsb-border);
}

.hxsb_strip_item {
    min-height: 132px;
    padding: 28px 26px;
    border-right: 1px solid var(--hxsb-border);
    background: #ffffff;
}

.hxsb_strip_item strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hxsb_strip_item span {
    display: block;
    margin-top: 8px;
    color: var(--hxsb-muted);
    font-size: 14px;
    line-height: 1.45;
}

.hxsb_section {
    padding: 82px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--hxsb-border);
}

.hxsb_section_soft {
    background: var(--hxsb-soft);
}

.hxsb_section_head {
    max-width: 880px;
    margin-bottom: 42px;
}

.hxsb_label {
    margin: 0 0 12px;
    color: var(--hxsb-blue);
    font-size: 13px;
    font-weight: 600;
}

.hxsb_h2 {
    margin: 0;
    color: var(--hxsb-text);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.hxsb_text {
    margin: 18px 0 0;
    color: var(--hxsb-muted);
    font-size: 17px;
    line-height: 1.62;
}

.hxsb_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hxsb-border);
    border-left: 1px solid var(--hxsb-border);
}

.hxsb_card {
    min-height: 262px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: #ffffff;
    border-right: 1px solid var(--hxsb-border);
    border-bottom: 1px solid var(--hxsb-border);
    color: inherit;
    text-decoration: none;
}

.hxsb_card:hover h3 {
    text-decoration: underline;
}

.hxsb_card_label {
    margin: 0 0 18px;
    color: var(--hxsb-blue);
    font-size: 12px;
    font-weight: 600;
}

.hxsb_card h3 {
    margin: 0;
    color: var(--hxsb-text);
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 500;
}

.hxsb_card p {
    margin: 14px 0 0;
    color: var(--hxsb-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hxsb_card span {
    margin-top: auto;
    padding-top: 24px;
    color: var(--hxsb-blue);
    font-size: 14px;
    font-weight: 600;
}

.hxsb_split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.hxsb_list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--hxsb-border);
    background: #ffffff;
}

.hxsb_list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: start;
    padding: 21px 0;
    border-bottom: 1px solid var(--hxsb-border);
}

.hxsb_check {
    color: var(--hxsb-blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.hxsb_list strong {
    display: block;
    color: var(--hxsb-text);
    font-size: 17px;
    font-weight: 600;
}

.hxsb_list span {
    display: block;
    margin-top: 5px;
    color: var(--hxsb-muted);
    font-size: 14px;
    line-height: 1.45;
}

.hxsb_path_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hxsb_path {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--hxsb-border);
}

.hxsb_path h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.hxsb_path p {
    margin: 16px 0 0;
    color: var(--hxsb-muted);
    font-size: 15px;
    line-height: 1.58;
}

.hxsb_path a {
    margin-top: auto;
    padding-top: 28px;
    color: var(--hxsb-blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.hxsb_path a:hover {
    text-decoration: underline;
}

.hxsb_growth_box {
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--hxsb-border);
}

.hxsb_growth_box h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.hxsb_growth_box p {
    margin: 16px 0 0;
    color: var(--hxsb-muted);
    font-size: 15px;
    line-height: 1.6;
}

.hxsb_growth_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--hxsb-border);
    border-left: 1px solid var(--hxsb-border);
}

.hxsb_growth_grid div {
    min-height: 108px;
    padding: 18px;
    border-right: 1px solid var(--hxsb-border);
    border-bottom: 1px solid var(--hxsb-border);
}

.hxsb_growth_grid strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.hxsb_growth_grid span {
    display: block;
    margin-top: 7px;
    color: var(--hxsb-muted);
    font-size: 13px;
    line-height: 1.4;
}

.hxsb_cta {
    padding: 78px 0;
    background: var(--hxsb-blue-soft);
    border-top: 1px solid var(--hxsb-border);
}

.hxsb_cta_inner {
    width: min(980px, calc(100% - 80px));
    margin: 0 auto;
    text-align: center;
}

.hxsb_cta h2 {
    margin: 0;
    color: var(--hxsb-text);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.hxsb_cta p {
    max-width: 720px;
    margin: 20px auto 0;
    color: var(--hxsb-muted);
    font-size: 17px;
    line-height: 1.62;
}

.hxsb_cta_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
}

.hxsb_note {
    margin-top: 22px;
    color: #6f7782;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .hxsb_hero_inner,
    .hxsb_split {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hxsb_cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .hxsb_path_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .hxsb_wrap,
    .hxsb_navbar_inner,
    .hxsb_cta_inner {
        width: min(100% - 32px, 1320px);
    }

    .hxsb_hero_inner {
        min-height: auto;
        padding: 52px 0;
    }

    .hxsb_title,
    .hxsb_h2,
    .hxsb_cta h2,
    .hxsb_panel_title,
    .hxsb_path h3,
    .hxsb_card h3,
    .hxsb_growth_box h3 {
        font-family: var(--hxsb-font);
        font-weight: 500;
        letter-spacing: -0.028em;
        text-wrap: balance;
    }

    .hxsb_title {
        font-size: clamp(36px, 10.4vw, 46px);
        line-height: 1.08;
    }

    .hxsb_h2,
    .hxsb_cta h2 {
        font-size: clamp(30px, 8.4vw, 40px);
        line-height: 1.12;
    }

    .hxsb_intro,
    .hxsb_text,
    .hxsb_cta p {
        font-size: 17px;
        line-height: 1.68;
        letter-spacing: -0.01em;
    }

    .hxsb_strip_grid,
    .hxsb_cards,
    .hxsb_panel_grid,
    .hxsb_growth_grid {
        grid-template-columns: 1fr;
    }

    .hxsb_section {
        padding: 58px 0;
    }

    .hxsb_panel,
    .hxsb_path,
    .hxsb_card,
    .hxsb_growth_box {
        padding: 26px;
    }

    .hxsb_actions,
    .hxsb_cta_actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hxsb_btn,
    .hxsb_link {
        width: 100%;
        justify-content: center;
    }
}