/**
 * Get Started (SC-79759) page header.
 *
 * Cloned from the designer's get-started.html and namespaced so it cannot touch
 * the rest of the application, and site.less cannot reach in: every class is
 * prefixed "gsh-", the design's bare "header" selector became ".gsh", and the
 * design tokens live on .gsh instead of :root.
 */

.gsh {
    --gsh-navy-900: #0A2647;
    --gsh-teal-500: #28A8E7;
    --gsh-teal-50: #E8F5FD;
    --gsh-ink-900: #102238;
    --gsh-ink-700: #3A4658;
    --gsh-ink-500: rgba(16, 34, 56, .75);
    --gsh-ink-300: #B5BECC;
    --gsh-line: rgba(93, 113, 133, .16);
    --gsh-bg-alt: #F6F8FC;
    --gsh-radius: 20px;
    --gsh-radius-sm: 10px;
    --gsh-shadow-lg: 0 24px 48px -12px rgba(10, 38, 71, .18);

    font-family: 'Sora', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.gsh *,
.gsh *::before,
.gsh *::after {
    box-sizing: border-box;
}

.gsh img,
.gsh svg {
    display: block;
    max-width: 100%;
}

/* No "border: 0" here - it would out-specify .gsh-btn-dark-pill's own border. */
.gsh a {
    text-decoration: none;
    margin: 0;
    font-family: inherit;
    text-transform: none;
}

.gsh ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gsh h4,
.gsh h5 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--gsh-ink-900);
    text-transform: none;
    margin: 0;
}

.gsh p {
    color: var(--gsh-ink-500);
    margin: 0;
}

/* ---------- Layout + buttons ---------- */

.gsh-wrap {
    max-width: 1384px;
    margin: 0 auto;
    padding: 0 36px;
}

.gsh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.gsh-btn:hover {
    transform: translateY(-1px);
}

.gsh-btn-dark-pill {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: var(--gsh-radius-sm);
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
}

.gsh-btn-dark-pill:hover {
    background: rgba(255, 255, 255, .1);
}

/* ---------- Header ---------- */
.gsh {
    position: fixed;
    top: 0;
    z-index: 50;
    width: 100%;
}

.gsh-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 112px;
}

.gsh-logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.gsh-logo svg {
    width: 151px;
    height: auto;
}

.gsh-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.gsh-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gsh-nav-right .gsh-signin {
    font-family: 'Sora';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.176px;
    color: #FFFFFF;
}

.gsh-nav-right .gsh-signin:hover {
    color: #fff;
}

.gsh-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 80;
}

.gsh-menu-toggle span {
    position: absolute;
    left: 10px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
    transition: transform .18s ease, opacity .18s ease, top .18s ease;
}
.gsh-nav-open .gsh-menu-toggle span{
    background: #102238;
}
.gsh-menu-toggle span:nth-child(1) {
    top: 16px;
}

.gsh-menu-toggle span:nth-child(2) {
    top: 23px;
}
.gsh:hover .gsh-menu-toggle span{
    background: #102238;
}

body.gsh-scrolled .gsh .gsh-menu-toggle,
body.gsh-nav-open .gsh .gsh-menu-toggle,
.gsh:hover .gsh-menu-toggle {
    color: #fff;
}

body.gsh-nav-open .gsh-menu-toggle span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
}

body.gsh-nav-open .gsh-menu-toggle span:nth-child(2) {
    opacity: 1;
    rotate: 135deg;
}

body.gsh-nav-open .gsh-menu-toggle span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
}

.gsh-mobile-menu {
    display: none;
}

/* ---------- Nav dropdowns ---------- */
.gsh-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 112px;
    cursor: pointer;
}

.gsh-nav-item>.gsh-nit {
    font-family: 'Sora';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.176px;
    color: #FFFFFF;
}

.gsh-nav-item:hover>.gsh-nit,
.gsh-nav-item:focus-within>.gsh-nit {
    color: #fff;
}

.gsh-nav-item.gsh-plain {
    padding: 0;
}

.gsh-nav-item.gsh-plain:hover a.gsh-nit,
.gsh-nav-item.gsh-plain:hover>.gsh-nit {
    color: #fff;
}

.gsh-nav-item .gsh-chevron {
    width: 10px;
    height: 7px;
    flex: none;
    transition: transform .18s ease;
}

.gsh-nav-item .gsh-chevron path {
    stroke: var(--gsh-ink-300);
}

.gsh-nav-item:hover .gsh-chevron,
.gsh-nav-item:focus-within .gsh-chevron {
    transform: rotate(180deg);
}

.gsh-nav-item:hover .gsh-chevron path,
.gsh-nav-item:focus-within .gsh-chevron path {
    stroke: #fff;
}

.gsh-dropdown {
    position: fixed;
    top: 112px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    color: var(--gsh-ink-900);
    box-shadow: var(--gsh-shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 60;
    overflow: hidden;
    text-align: left;
}
.gsh-dropdown.gsh-dd-int{
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 80%, rgba(245, 245, 245, 1) 80%);
}
.gsh-nav-item:hover .gsh-dropdown,
.gsh-nav-item:focus-within .gsh-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.gsh-dd-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    max-width: 1384px;
    margin: auto;
    padding: 0 32px;
}

.gsh-dd-main {
    padding: 40px 0;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
}

.gsh-dd-side {
    background: #f5f5f5;
    padding: 40px 32px;
}

.gsh-dd-side h5 {
    font-weight: 700;
    letter-spacing: -0.022em;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.gsh-nav-item:hover>.gsh-nit, .gsh-nav-item:focus-within>.gsh-nit{
    font-weight: bold;
}
.gsh-dd-side a {
    display: block;
    font-size: 16px;
    color: #0074db;
    margin-bottom: 16px;
    font-weight: 400;
}

.gsh-dd-side a:hover {
    color: var(--gsh-teal-500);
}

.gsh-dd-side a.gsh-blue {
    color: #0074db;
    font-weight: 400;
}

.gsh-dropdown svg {
    stroke: currentColor;
    min-width: 40px;
    width: 40px;
}

.gsh-dd-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    max-width: 420px;
}
.gsh-dd-item a {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    max-width: 420px;
}
.gsh-dd-item .gsh-icon {
    width: 24px;
    height: 24px;
    flex: none;
    color: var(--gsh-navy-900);
    margin-top: 2px;
}

.gsh-dd-item h4 {
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    letter-spacing: -0.022em;
}

.gsh-dd-item p {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -0.011em;
}

.gsh-dd-link {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #28a8e6;
    font-weight: 700;
}

.gsh-dd-link svg {
    width: 14px;
    height: 14px;
}
.gsh-dd-side a.gsh-lightblue{
    display: block;
    font-size: 16px;
    color: #0074db;
    margin-bottom: 16px;
    font-weight: 400;
}
.gsh-dd-int-col {
    display: flex;
    flex-direction: column;
    gap: 62px;
    max-width: 356px;
}

.gsh-dd-int-item{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gsh-dd-int-item h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.022em;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.gsh-dd-int-item p {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #012248;
}
.gsh-dd-side a{
    color: #012248;
}
.gsh-dd-cust .gsh-dd-main {
    padding-bottom: 0;
    max-width: 1088px;
    margin: auto;
    align-items: stretch;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-column-gap: 88px;
    grid-row-gap: 20px;
    display: grid;
}
.gsh-dd-cust-item{
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.gsh-dd-cust-item h4 {
    font-weight: 700 !important;
    letter-spacing: -0.022em !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.011em;
    color: #000000;
}

.gsh-dd-cust-photo {
    width: 100%;
}
.gsh-dd-cust-photo img{
    height: 162px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gsh-dd-cust-item p {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: -0.011em;
}

.gsh-dd-cust-all {
    background: var(--gsh-bg-alt);
    text-align: center;
    padding: 32px;
    margin-top: 24px;
}

.gsh-dd-cust-all a {
    font-size: 12px;
    line-height: 150%;
    font-weight: 700;
    letter-spacing: -0.011em;
    color: #012248;
    text-decoration: underline;
}

.gsh-dd-contact .gsh-dd-main {
    max-width: 973px;
    width: 100%;
    text-align: left;
    flex-direction: row;
    display: flex;
    gap: 152px;
    margin-top: 0px;
    margin: auto;
}

.gsh-dd-contact h5 {
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.022em;
    font-size: 16px;
    line-height: 150%;
}

.gsh-dd-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #012248;
    font-weight: 700;
    letter-spacing: -0.022em;
    font-size: 16px;
    line-height: 150%;
    margin-top: 16px;
}

.gsh-dd-phone .gsh-flag svg{
    stroke: inherit;

}

.gsh-dd-contact-links {
    align-items: center;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    grid-column-gap: 32px;
    grid-row-gap: 20px;
    flex-grow: 1;
    display: grid;
    font-size: 16px;
    line-height: 150%;
    font-size: 16px;
    line-height: 150%;
    color: #012248;
}

.gsh-dd-contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 150%;
    font-size: 16px;
    line-height: 150%;
    color: #012248;
    font-weight: 700;
}

.gsh-dd-contact-link .gsh-icon {
    width: 34px;
    height: 34px;
    color: var(--gsh-navy-900);
}

/* ---------- Responsive ---------- */

@media (max-width:1100px) {
    body.gsh-nav-open {
                    overflow: hidden;
                }
    .gsh-nav {
                    height: 88px;
                }
    .gsh-dropdown.gsh-dd-int {
                    background: transparent;
                }
    .gsh-dd-grid,
                .gsh-dd-main,
                .gsh-dd-contact .gsh-dd-main,
                .gsh-dd-cust .gsh-dd-main {
                    display: grid;
                    grid-template-columns: 1fr;
                    max-width: none;
                    padding: 0;
                    gap: 14px;
                }
    .gsh-dd-main,
                .gsh-dd-contact .gsh-dd-main,
                .gsh-dd-cust .gsh-dd-main {
                    padding: 8px 0 6px;
                }
    .gsh-dd-side {
                    margin-top: 8px;
                    padding: 18px;
                    border-radius: 8px;
                }
    .gsh-dd-int-col {
                    gap: 18px;
                    max-width: none;
                }
    .gsh-dd-item,
                .gsh-dd-item a {
                    display: grid;
                    max-width: none;
                    gap: 14px;
                    align-items: flex-start;
                }
    .gsh-mobile-menu .gsh-dd-item a{
                    display: flex;
                }
    .gsh-dd-item .gsh-icon,
                .gsh-dropdown svg {
                    width: 40px;
                    min-width: 40px;
                }
    .gsh-dd-item h4,
                .gsh-dd-cust-item h4,
                .gsh-dd-int-item h4,
                .gsh-dd-contact h5 {
                    font-size: 16px;
                    line-height: 1.35;
                    letter-spacing: 0;
                    margin-bottom: 4px;
                }
    .gsh-dd-item p,
                .gsh-dd-cust-item p,
                .gsh-dd-int-item p {
                    font-size: 13px;
                    line-height: 1.45;
                    letter-spacing: 0;
                }
    .gsh-dd-cust-photo img {
                    height: 120px;
                }
    .gsh-dd-contact-links {
                    grid-template-columns: 1fr;
                    gap: 18px;
                    align-items: flex-start;
                }
    .gsh-dd-contact-link {
                    align-items: flex-start;
                    flex-direction: row;
                    text-align: left;
                }
    .gsh-nav-right {
                    display: none;
                }
    .gsh-menu-toggle {
                    display: block;
                    color: #102238;
                }
    body.gsh-nav-open::before {
                    position: fixed;
                    inset: 0;
                    z-index: 45;
                    content: "";
                    background: rgba(0, 0, 0, .74);
                }
    .gsh-nav-links {
                    display: none !important;
                }
    .gsh-mobile-menu {
                    position: fixed;
                    top: 88px;
                    right: 0;
                    z-index: 70;
                    display: block;
                    width: min(640px, 100vw);
                    height: calc(100dvh - 88px);
                    padding: 44px 72px 42px;
                    overflow-y: auto;
                    background: #fff;
                    border-top: 1px solid rgba(7, 17, 34, .08);
                    box-shadow: -22px 0 44px rgba(7, 17, 34, .18);
                    transform: translateX(100%);
                    visibility: hidden;
                    pointer-events: none;
                    transition: transform .22s ease, visibility .22s ease;
                }
    body.gsh-nav-open .gsh-mobile-menu {
                    transform: translateX(0);
                    visibility: visible;
                    pointer-events: auto;
                }
    .gsh-mobile-menu details {
                    border: 0;
                }
    .gsh-mobile-menu summary {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 24px;
                    min-height: 64px;
                    color: #05070a;
                    cursor: pointer;
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1.18;
                    letter-spacing: 0;
                    list-style: none;
                }
    .gsh-mobile-menu summary::-webkit-details-marker {
                    display: none;
                }
    .gsh-mobile-menu summary::after {
                    width: 6px;
                    height: 6px;
                    flex: 0 0 6px;
                    border-right: 2px solid #012248;
                    border-bottom: 2px solid #012248;
                    content: "";
                    transform: rotate(45deg);
                    transition: transform .16s ease;
                }
    .gsh-mobile-menu details[open] summary::after {
                    transform: rotate(225deg);
                }
    .gsh-mobile-menu a {
                    display: block;
                    color: #012248;
                    font-size: 30px;
                    font-weight: 500;
                    line-height: 1.2;
                    letter-spacing: 0;
                    padding: 14px 0;
                }
    .gsh-mobile-submenu {
                    display: grid;
                    gap: 12px;
                    padding: 4px 0 18px 18px;
                }
    .gsh-mobile-submenu a {
                    font-size: 18px;
                    font-weight: 600;
                    line-height: 1.35;
                    padding: 6px 0;
                }
    .gsh-mobile-rich-submenu {
                    gap: 0;
                    padding: 10px 0 26px;
                }
    .gsh-mobile-menu .gsh-dropdown {
                    position: static !important;
                    display: block !important;
                    width: 100% !important;
                    max-width: none !important;
                    min-width: 0 !important;
                    padding: 0 !important;
                    opacity: 1 !important;
                    visibility: visible !important;
                    overflow: visible !important;
                    pointer-events: auto !important;
                    background: transparent !important;
                    box-shadow: none !important;
                    transform: none !important;
                }
    .gsh-mobile-menu .gsh-dd-grid,
                .gsh-mobile-menu .gsh-dd-main,
                .gsh-mobile-menu .gsh-dd-contact .gsh-dd-main,
                .gsh-mobile-menu .gsh-dd-cust .gsh-dd-main {
                    display: grid !important;
                    grid-template-columns: 1fr !important;
                    gap: 18px !important;
                    width: 100% !important;
                    max-width: none !important;
                    padding: 0 !important;
                }
    .gsh-mobile-menu .gsh-dd-item,
                .gsh-mobile-menu .gsh-dd-item a {
                    width: 100%;
                    max-width: none;
                }
    .gsh-mobile-menu .gsh-dd-item a {
                    display: grid;
                    grid-template-columns: 42px minmax(0, 1fr);
                    align-items: flex-start;
                    gap: 14px;
                    color: #012248;
                    font-size: inherit;
                    font-weight: inherit;
                    line-height: inherit;
                    padding: 0;
                }
    .gsh-mobile-menu :where(.gsh-dropdown) a {
                    font-size: inherit;
                    line-height: inherit;
                    padding: 0;
                }
    .gsh-mobile-menu .gsh-dropdown svg {
                    width: 40px;
                    height: auto;
                    flex: 0 0 40px;
                }
    .gsh-mobile-menu .gsh-dd-item h4,
                .gsh-mobile-menu .gsh-dd-int-item h4,
                .gsh-mobile-menu .gsh-dd-cust-item h4 {
                    margin: 0 0 5px;
                    color: #071122;
                    font-size: 17px;
                    font-weight: 800;
                    line-height: 1.25;
                    letter-spacing: 0;
                }
    .gsh-mobile-menu .gsh-dd-item p,
                .gsh-mobile-menu .gsh-dd-int-item p,
                .gsh-mobile-menu .gsh-dd-cust-item p {
                    margin: 0;
                    color: #071122;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 1.45;
                    letter-spacing: 0;
                }
    .gsh-mobile-menu .gsh-dd-int-col {
                    display: grid;
                    gap: 18px;
                    width: 100%;
                    max-width: none;
                }
    .gsh-mobile-menu .gsh-dd-int-item {
                    min-width: 0;
                }
    .gsh-mobile-menu .gsh-dd-link {
                    display: inline-flex;
                    align-items: center;
                    gap: 5px;
                    width: fit-content;
                    margin-top: 8px;
                    color: #0084ff;
                    font-size: 14px;
                    font-weight: 700;
                    line-height: 1.3;
                }
    .gsh-mobile-menu .gsh-dd-link svg {
                    width: 18px;
                }
    .gsh-mobile-menu .gsh-dd-side,
                .gsh-mobile-menu .gsh-dd-cust-all {
                    display: grid;
                    gap: 12px;
                    margin-top: 2px;
                    padding: 16px;
                    border-radius: 8px;
                    background: #f5f8fb;
                }
    .gsh-mobile-menu .gsh-dd-side h5,
                .gsh-mobile-menu .gsh-dd-contact h5 {
                    margin: 0;
                    color: #071122;
                    font-size: 13px;
                    font-weight: 800;
                    line-height: 1.2;
                    text-transform: uppercase;
                    letter-spacing: .04em;
                }
    .gsh-mobile-menu .gsh-dd-side a,
                .gsh-mobile-menu .gsh-dd-cust-all a {
                    color: #012248;
                    font-size: 15px;
                    font-weight: 700;
                    line-height: 1.35;
                    padding: 0;
                }
    .gsh-mobile-menu .gsh-dd-side a.gsh-blue,
                .gsh-mobile-menu .gsh-dd-side a.gsh-lightblue {
                    color: #0084ff;
                }
    .gsh-mobile-menu .gsh-dd-cust-item {
                    display: grid;
                    gap: 10px;
                    min-width: 0;
                }
    .gsh-mobile-menu .gsh-dd-cust-photo {
                    overflow: hidden;
                    border-radius: 8px;
                }
    .gsh-mobile-menu .gsh-dd-cust-photo img {
                    width: 100%;
                    height: 132px;
                    object-fit: cover;
                }
    .gsh-mobile-menu .gsh-dd-contact .gsh-dd-main > div {
                    display: grid;
                    gap: 12px;
                    min-width: 0;
                }
    .gsh-mobile-menu .gsh-dd-phone {
                    display: grid;
                    gap: 10px;
                }
    .gsh-mobile-menu .gsh-dd-phone a {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    color: #012248;
                    font-size: 15px;
                    font-weight: 700;
                    line-height: 1.3;
                }
    .gsh-mobile-menu .gsh-flag svg {
                    width: 35px;
                }
    .gsh-mobile-menu .gsh-dd-contact-links {
                    display: grid;
                    grid-template-columns: 1fr;
                    gap: 12px;
                }
    .gsh-mobile-menu .gsh-dd-contact-link {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    gap: 12px;
                    min-height: 58px;
                    padding: 12px;
                    border-radius: 8px;
                    background: #f5f8fb;
                    color: #012248;
                    font-size: 15px;
                    font-weight: 800;
                    line-height: 1.25;
                    text-align: left;
                }
    .gsh-mobile-menu .gsh-dd-contact-link svg {
                    width: 32px;
                    flex: 0 0 32px;
                }
    .gsh-mobile-menu-actions {
                    display: grid;
                    grid-template-columns: minmax(90px, .7fr) minmax(190px, 1.4fr);
                    align-items: center;
                    gap: 24px;
                    margin-top: 70px;
                }
    .gsh-mobile-menu-actions .gsh-signin {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.3;
                    text-align: center;
                }
    .gsh-mobile-menu-actions .gsh-btn-dark-pill {
                    color: #012248;
                    border-color: #012248;
                    border-radius: 15px;
                    font-size: 16px;
                    font-weight: 800;
                    padding: 10px 16px;
                    text-align: center;
                }}@media (max-width:768px) {
    .gsh-nav{
                    height: 76px;
                }
    .gsh-mobile-menu {
                    top: 76px;
                    height: calc(100dvh - 76px);
                    padding: 42px 36px 38px;
                }
    .gsh-mobile-menu summary,
                .gsh-mobile-menu a {
                    font-size: 16px;
                    line-height: 150%;
                    letter-spacing: -0.02em;
                    font-weight: 700;
                }
    .gsh-mobile-menu-actions {
                    grid-template-columns: minmax(76px, .55fr) minmax(160px, 1.45fr);
                    gap: 18px;
                    margin-top: 56px;
                }
    .gsh-wrap{
                    padding: 0 20px;
                }}@media (max-width:420px) {
    .gsh-mobile-menu {
                    padding-left: 28px;
                    padding-right: 28px;
                }
    .gsh-mobile-menu-actions {
                    grid-template-columns: 1fr;
                    gap: 16px;
                }}

/* ---------- Scrolled / hover / menu-open state ----------
   The header is transparent over the dark hero and flips to white once the
   page scrolls, the menu opens, or it is hovered. */
.gsh{
    transition: 0.2s;
}
.gsh:hover{
    background: #fff;
    transition: 0.2s;
}

body.gsh-scrolled .gsh{
    background: #fff;
    transition: 0.2s;
}
body.gsh-scrolled .gsh .gsh-nav-item>.gsh-nit,
body.gsh-scrolled .gsh .gsh-nav-right .gsh-signin,
body.gsh-scrolled .gsh .gsh-btn-dark-pill,
body.gsh-nav-open .gsh .gsh-nav-item>.gsh-nit,
body.gsh-nav-open .gsh .gsh-nav-right .gsh-signin,
body.gsh-nav-open .gsh .gsh-btn-dark-pill,
.gsh:hover .gsh-nav-item>.gsh-nit,
.gsh:hover .gsh-nav-right .gsh-signin,
.gsh:hover .gsh-btn-dark-pill
{
    color: #102238;
}
.gsh-nav-item:hover .gsh-chevron path, .gsh-nav-item:focus-within .gsh-chevron path{
    stroke: #102238 !important;
}
body.gsh-scrolled .gsh .gsh-btn-dark-pill,
body.gsh-nav-open .gsh .gsh-btn-dark-pill,
.gsh:hover .gsh-btn-dark-pill{
    border: 2px solid #102238;
}
body.gsh-scrolled .gsh .gsh-logo svg path,
body.gsh-nav-open .gsh .gsh-logo svg path,
.gsh:hover .gsh-logo svg path{
    fill: #102238;
}

/* ---------- Overrides for the application's global styles ----------
   site.less styles the bare <header> element as the old blue app bar, and
   forces its padding with !important. Last-wins overrides, kept together here
   so they are obvious as ours rather than the designer's. */
.gsh {
    background: transparent;
    padding: 0 !important;
    margin: 0;
}

/* The design flips the logo, nav text and pill to the dark palette when the
   mobile menu opens, but only paints the bar white on "scrolled" - so opening
   the menu at the top of the page leaves dark-on-dark. */
body.gsh-nav-open .gsh {
    background: #fff;
}

.gsh-dropdown {
    cursor: default;
}

/* Top-level mobile menu items are a mix of <summary> (the ones with a submenu)
   and plain <a> (Pricing, Partners). The design gives them different colours,
   weights and heights, which reads as an accident in one flat list - match the
   anchors to the summaries.

   Direct children only: .gsh-mobile-menu a also matches the submenu links,
   which are meant to stay smaller and navy. */
@media (max-width: 1100px) {
    .gsh-mobile-menu > a {
        display: flex;
        align-items: center;
        min-height: 64px;
        padding: 0;
        color: #05070a;
        font-weight: 700;
        font-size: 16px;
    }}

/* Keep hamburger bars at top menu visible on scroll (on mobile) */
body.gsh-scrolled .gsh .gsh-menu-toggle span {
    background: #102238;
}
