:root {
    --green-1: #0f6b2d;
    --green-2: #9be09b;
    --dark: #061412;
    --accent: #0b4b2f;
    --white: #ffffff;
    --nav-height: 64px;
    /* slider button sizing & gap used to compute container padding so buttons never overlap slides */
    --slider-btn-size: 52px;
    --slider-btn-offset: 28px;
    /* how far the button sits outside the viewport area (desktop) */
    /* Section sizing variables (desktop defaults) */
    --section-min-height: 100vh;
    --section-padding-top: 80px;
    --section-padding-bottom: 80px;
    --hero-min-height: 150vh;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark);
    background: var(--dark);
    scroll-behavior: smooth;

}

img {
    max-width: 100%;
    height: auto
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 60px);
}

.site-header {
    background: var(--dark);
    color: white;
    position: fixed;
    /* keep header visible at all times */
    left: 0;
    right: 0;
    top: 0;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* old gradient divider removed to avoid duplicate progress bars */

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--nav-height);
    gap: 5em;
    padding: 0 20px;
}

/* keep header layout full width while content sections remain constrained */
.site-header .header-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 clamp(20px, 3vw, 60px);
}

/* Prevent any header children from wrapping onto a second line */
.header-inner {
    white-space: nowrap;
}

/* Layout tweaks so header CTAs remain visible and responsive */
.brand {
    grid-column: 1;
    display: flex;
    align-items: center;
    max-width: 320px;
}

.main-nav {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
    overflow: hidden;
}

.main-nav ul {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 0 12px;
}

.main-nav a {
    white-space: nowrap;
}

.header-ctas {
    grid-column: 3;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-self: end;
    margin-left: 24px;
}

/* ensure header has a little right padding so CTAs never sit flush */
.site-header .header-inner {
    padding-right: 12px;
}

.circle-preview-section {
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 12vw, 180px) 0;

    background:
        radial-gradient(circle at 12% 18%, rgba(122, 242, 151, 0.28), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(91, 165, 255, 0.22), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(236, 213, 159, 0.20), transparent 36%),
        linear-gradient(135deg, #020b08 0%, #071b13 30%, #0a2318 58%, #102e22 100%);

    color: #ffffff;
    isolation: isolate;
}

/* glowing overlay */
.circle-preview-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            transparent 0 35%,
            rgba(255, 255, 255, .05) 40%,
            transparent 45% 100%);
    pointer-events: none;
    z-index: 0;
}

/* soft light blobs */
.circle-preview-section::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(85, 212, 131, .16), transparent 70%);
    top: -280px;
    right: -240px;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.circle-preview-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(380px, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(40px, 7vw, 120px);
}

/* BIGGER LOGO */
.circle-preview-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* glow behind logo */
.circle-preview-logo-wrap::before {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(122, 242, 151, .30) 0%,
            rgba(122, 242, 151, .08) 45%,
            transparent 72%);
    filter: blur(30px);
    animation: pulseGlow 5s ease-in-out infinite;
}

.circle-preview-logo {
    position: relative;
    z-index: 2;


    aspect-ratio: 1 / 1;
    object-fit: contain;

    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, .45)) drop-shadow(0 0 35px rgba(122, 242, 151, .22));

    animation: circleFloat 6s ease-in-out infinite;

    width: min(800px, 130vw);
    max-width: none;
    transform: scale(1.15);
}

/* COPY SIDE */
.circle-preview-copy {
    max-width: 760px;
}

.circle-preview-eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 12px 18px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);

    backdrop-filter: blur(12px);

    color: #ecd59f;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.circle-preview-copy h2 {
    margin: 0 0 26px;

    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: .92;
    letter-spacing: -.05em;

    color: #ffffff;
}

.circle-preview-copy p {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, .86);

    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.9;

    max-width: 68ch;
}

.circle-preview-copy p strong {
    color: #7de5a8;
}

/* PREMIUM BUTTON */
.circle-preview-btn {
    margin-top: 24px;
    min-height: 60px;
    padding: 0 34px;

    border-radius: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg, #55d483, #7de5a8);

    color: #041008;

    font-weight: 900;
    text-decoration: none;

    box-shadow:
        0 20px 48px rgba(85, 212, 131, .24),
        0 0 24px rgba(122, 242, 151, .18);

    transition:
        transform .24s ease,
        box-shadow .24s ease,
        background .24s ease;
}

.circle-preview-btn:hover {
    transform: translateY(-6px) scale(1.02);

    background:
        linear-gradient(90deg, #ffd56b 0%, #f0a83c 100%);

    box-shadow:
        0 28px 58px rgba(240, 168, 60, .28),
        0 0 32px rgba(255, 213, 107, .22);
}

/* animations */
@keyframes circleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: .8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* responsive */
@media (max-width: 980px) {
    .circle-preview-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .circle-preview-copy {
        margin: 0 auto;
    }

    .circle-preview-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .circle-preview-logo {
        width: min(460px, 92vw);
    }

    .circle-preview-logo-wrap::before {
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 640px) {
    .circle-preview-logo {
        width: min(360px, 92vw);
    }

    .circle-preview-copy h2 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }
}

/* Tighter header spacing on medium widths so items remain on one line */
@media (max-width:1100px) {
    .brand {
        max-width: 240px;
    }

    .brand .logo {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text small {
        display: block;
        font-size: 10px;
    }

    .main-nav ul {
        gap: 12px;
        padding: 0 8px;
    }

    .main-nav a {
        padding: 6px 6px 6px 6px;
        font-size: 14px;
    }

    .header-ctas .btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .header-ctas {
        margin-left: 12px;
    }

    /* reduce header gap on medium screens */
    .header-inner {
        gap: 15em;
    }
}


/* Scroll progress bar under header */
.scroll-progress {
    height: 6px;
    background: transparent;
    position: relative;
    width: 100%;
}

.scroll-progress__bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--green-2), var(--green-1));
    transition: width 120ms linear;
}

.brand {
    display: flex;
    align-items: center;
    gap: 24px
}

/* Kicker pill: animated flowing gradient border with shining overlay */
.kicker {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    /* two-layer background: inner subtle fill + animated border gradient */
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(6, 20, 40, 0.06)),
        linear-gradient(90deg, #05253f 0%, #4388cc 30%, #0a0b42 60%, #11063b 100%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    background-size: 200% 100%, 200% 100%;
    animation: kicker-border-flow 3.6s linear infinite;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(2, 18, 40, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.kicker::after {
    content: '';
    position: absolute;
    left: -70%;
    top: 0;
    height: 100%;
    width: 70%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.07) 30%, rgba(255, 255, 255, 0) 60%);
    transform: skewX(-18deg);
    filter: blur(8px);
    opacity: 0.85;
    pointer-events: none;
    animation: kicker-shine 2.6s linear infinite;
}

@keyframes kicker-shine {
    from {
        left: -70%;
    }

    to {
        left: 140%;
    }
}

@keyframes kicker-border-flow {
    0% {
        background-position: 0% 50%, 0% 50%;
    }

    50% {
        background-position: 100% 50%, 100% 50%;
    }

    100% {
        background-position: 0% 50%, 0% 50%;
    }
}

@media (max-width:480px) {
    .kicker {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 6px
}

.brand-text small {
    display: block;
    font-size: 11px;
    opacity: 0.85
}

.nav-toggle {
    display: none;
    /* hidden by default; shown by JS when needed */
    background: transparent;
    border: 0;
    color: white;
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100000;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0 10px 0 28px;
    /* left padding reserved for visible first link */
    display: flex;
    gap: clamp(-2px, -0.2vw, 2px);
    /* gap scales with viewport */
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
    /* ensure UL remains visible and doesn't become scroll-only */
}


.main-nav a {
    color: white;
    text-decoration: none;
    padding: 8px clamp(6px, 0.6vw, 12px);
    border-radius: 6px;
    display: inline-block;
    font-size: clamp(11px, 1vw, 16px);
    /* scale down on narrower viewports */
    white-space: nowrap;
}

/* Active/hover color for nav links (sliding indicator handled by JS) */
.main-nav a.active {
    color: var(--green-2);
    font-weight: 700;
}

/* Single sliding indicator under the nav: animated left-to-right */
.main-nav {
    position: relative;
}

.main-nav .nav-indicator {
    position: absolute;
    bottom: 0px;
    /* increased gap to bottom */
    left: 0;
    height: 3px;
    /* slightly thinner */
    width: 0;
    background: linear-gradient(90deg, var(--green-2), var(--green-1));
    border-radius: 4px;
    transition: left 240ms cubic-bezier(.2, .9, .2, 1), width 240ms cubic-bezier(.2, .9, .2, 1), opacity 200ms ease, transform 200ms ease;
    pointer-events: none;
    opacity: 0;
}

.main-nav a.active {
    color: var(--green-2);
    font-weight: 700;
}

.main-nav .nav-indicator.visible {
    opacity: 1;
}

.header-ctas {
    display: flex;
    gap: 12px;
    flex: 0 0 auto
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600
}

.btn-primary {
    background: #39c27a;
    color: #04260f
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white
}

.btn-white {
    background: white;
    color: #04260f;
    border-radius: 12px;
    padding: 12px 18px;
    margin-right: 12px;
    align-self: center;
}

/* Header CTAs: hover, focus and active interactions */
.header-ctas .btn {
    transition: background 180ms ease, color 180ms ease, opacity 160ms ease;
}

.header-ctas .btn:focus-visible {
    outline: 3px solid rgba(223, 224, 155, 0.18);
    outline-offset: 5px;
}

.header-ctas .btn-outline:hover,
.header-ctas .btn-outline:focus {
    background: #ffd400;
    /* bright yellow */
    border-color: rgba(4, 38, 15, 0.12);
    color: #04260f;
}

.header-ctas .btn-primary:hover,
.header-ctas .btn-primary:focus {
    background: #ffd400;
    /* bright yellow */
    color: #04260f;
}

/* Navbar / header appearance copied from Career page design */
/* Same navbar/footer family as circle.html */
/* Fixed navbar matching bepartofourteam.html */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #061412 !important;
    color: #fff !important;
    transform: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .35) !important;
}

.header-inner {
    width: min(1500px, calc(100% - 48px)) !important;
    min-height: 76px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    white-space: nowrap !important;
}

.site-header .brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 0 0 285px !important;
    min-width: 285px !important;
    max-width: 285px !important;
    overflow: hidden !important;
    margin-right: 0 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.site-header .brand .logo {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    display: block !important;
}

.site-header .brand-text {
    min-width: 0 !important;
    line-height: 1.05 !important;
    overflow: hidden !important;
}

.site-header .brand-text strong {
    display: block !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    letter-spacing: -.02em !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.site-header .brand-text small {
    display: block !important;
    margin-top: 4px !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, .86) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.site-header .main-nav {
    display: block !important;
    position: relative !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    overflow: visible !important;
}

.site-header .main-nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(28px, 2.4vw, 52px) !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.site-header .main-nav li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
}

.site-header .main-nav a {
    display: inline-block !important;
    width: auto !important;
    padding: 10px 0 !important;
    color: rgba(255, 255, 255, .94) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    position: relative !important;
    text-align: center !important;
}

.site-header .main-nav a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #55d483, #7de5a8) !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform .22s ease !important;
    display: block !important;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
    color: #7de5a8 !important;
}

.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after {
    transform: scaleX(1) !important;
}

.site-header .main-nav .nav-indicator {
    display: none !important;
}

.site-header .header-ctas {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    flex: 0 0 auto !important;
    margin-left: 0 !important;
    min-width: max-content !important;
}

.site-header .header-ctas .btn {
    min-height: 52px !important;
    padding: 0 24px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22) !important;
}

.site-header .header-ctas .btn-outline {
    background: #fff !important;
    color: #041008 !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
}

.site-header .header-ctas .btn-primary {
    background: linear-gradient(135deg, #55d483, #7de5a8) !important;
    color: #041008 !important;
    border: 1px solid rgba(255, 255, 255, .10) !important;
}

.site-header .nav-toggle {
    display: none !important;
}

.scroll-progress {
    height: 5px !important;
    background: transparent !important;
    display: block !important;
}

.scroll-progress__bar {
    height: 100% !important;
    width: 0%;
    background: linear-gradient(90deg, #55d483, #7de5a8) !important;
    display: block !important;
}



/* Mobile / tablet hamburger */
@media (max-width:1050px) {
    body {
        padding-top: 75px !important;
    }

    .header-inner {
        width: min(100% - 28px, 1500px) !important;
        min-height: 70px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        column-gap: 16px !important;
    }

    .site-header .brand {
        grid-column: 1 !important;
        margin: 0 !important;
        flex: initial !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .site-header .brand .logo {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
    }

    .site-header .brand-text strong {
        font-size: 15px !important;
    }

    .site-header .brand-text small {
        font-size: 11px !important;
    }

    .site-header .nav-toggle {
        grid-column: 2 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        width: 46px !important;
        height: 46px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 14px !important;
        border: 1px solid rgba(255, 255, 255, .18) !important;
        background: rgba(255, 255, 255, .08) !important;
        color: #fff !important;
        font-size: 28px !important;
        line-height: 1 !important;
        cursor: pointer !important;
        z-index: 100002 !important;
    }

    .site-header .main-nav {
        grid-column: 1/-1 !important;
        position: fixed !important;
        top: 82px !important;
        left: 14px !important;
        right: 14px !important;
        width: auto !important;
        max-height: calc(100dvh - 108px) !important;
        overflow-y: auto !important;
        display: none !important;
        padding: 16px !important;
        border-radius: 22px !important;
        background: linear-gradient(180deg, rgba(12, 26, 20, .99), rgba(6, 18, 12, .98)) !important;
        border: 1px solid rgba(255, 255, 255, .16) !important;
        box-shadow: 0 26px 70px rgba(0, 0, 0, .44), 0 0 44px rgba(85, 212, 131, .16) !important;
        z-index: 100000 !important;
    }

    .site-header .main-nav.open {
        display: block !important;
    }

    .site-header .main-nav ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .site-header .main-nav li {
        width: 100% !important;
    }

    .site-header .main-nav a {
        display: block !important;
        width: 100% !important;
        padding: 14px 15px !important;
        border-radius: 14px !important;
        color: rgba(255, 255, 255, .92) !important;
        background: rgba(255, 255, 255, .055) !important;
        border: 1px solid rgba(255, 255, 255, .09) !important;
        font-size: 16px !important;
        text-align: left !important;
    }

    .site-header .main-nav a::after {
        display: none !important;
    }

    .site-header>.header-inner>.header-ctas {
        display: none !important;
    }

    .site-header .main-nav .header-ctas {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin: 12px 0 0 !important;
        padding-top: 14px !important;
        border-top: 1px solid rgba(255, 255, 255, .12) !important;
        min-width: 0 !important;
    }

    .site-header .main-nav .header-ctas .btn {
        width: 100% !important;
        min-height: 48px !important;
        border-radius: 14px !important;
    }
}

@media (max-width:680px) {
    body {
        padding-top: 73px !important;
    }

    .header-inner {
        width: min(100% - 24px, 1500px) !important;
        min-height: 68px !important;
    }

    .site-header .brand {
        gap: 10px !important;
    }

    .site-header .brand .logo {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .site-header .brand-text strong {
        font-size: 13px !important;
        max-width: calc(100vw - 116px) !important;
    }

    .site-header .brand-text small {
        font-size: 10px !important;
        max-width: calc(100vw - 116px) !important;
    }

    .site-header .nav-toggle {
        width: 44px !important;
        height: 44px !important;
        font-size: 26px !important;
    }

    .site-header .main-nav {
        top: 78px !important;
        left: 10px !important;
        right: 10px !important;
        padding: 14px !important;
    }
}

@media (max-width: 520px) {
    .site-header .nav-toggle {
        width: 44px !important;
        height: 44px !important;
        font-size: 26px !important;
    }

    .site-header .main-nav {
        top: 78px !important;
        left: 10px !important;
        right: 10px !important;
        padding: 14px !important;
    }
}

.hero {
    padding: var(--hero-padding, 80px) 0;
    min-height: var(--hero-min-height);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center
}

.hero-left h1 {
    font-size: clamp(40px, 6.5vw, 84px);
    line-height: 1.02;
    margin: 0 0 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #103023;
    text-rendering: optimizeLegibility;
}

.lead {
    max-width: 750px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.92);
    font-size: clamp(16px, 2.2vw, 20px);
    text-align: justify;
    margin-top: 8px;
}

.hero-ctas {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Hero CTA: individual button hover/press to yellow gradient */
.hero-ctas .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    line-height: 1.2;
    box-sizing: border-box;

    transition: background 320ms cubic-bezier(.2, .9, .2, 1),
        color 320ms cubic-bezier(.2, .9, .2, 1),
        transform 260ms cubic-bezier(.2, .9, .2, 1),
        box-shadow 320ms ease;

    background: white;
    color: #04260f;
}

/* Individual hover / active / focus-visible state */
.hero-ctas .btn:hover,
.hero-ctas .btn:active,
.hero-ctas .btn:focus-visible {
    background: linear-gradient(90deg, #ffd56b 0%, #f0a83c 100%);
    color: #04260f;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 14px 36px rgba(240, 168, 60, 0.18);
}

.hero-ctas .btn:focus {
    outline: 3px solid rgba(255, 213, 102, 0.28);
    outline-offset: 4px;
}

.crest {
    width: 100%;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* let the logo be fully visible */
    padding: 24px 0;
}

.crest-logo {
    width: 420px;
    /* preferred visible size */
    max-width: 100%;
    /* shrink on narrow viewports */
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 18px;
    transition: transform 260ms cubic-bezier(.2, .9, .2, 1), box-shadow 260ms ease;
    will-change: transform;
    animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(-0.6deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* pause gentle float on hover and give slight pop */



@media (max-width:1100px) {
    .crest {
        padding: 20px 0;
    }

    .crest-logo {
        max-width: 90%;
        height: auto;
    }
}

@media (max-width:820px) {
    .crest {
        padding: 16px 0;
    }

    .crest-logo {
        max-width: 36%;
        border-radius: 12px;
    }
}

/* Additional logo breakpoint sizing */
@media (min-width:1400px) {
    .logo {
        width: 88px;
        height: 88px;
    }

    .crest {
        padding: 40px 0;
    }

    .crest-logo {
        width: 420px;
        height: auto;
    }
}

@media (max-width:480px) {
    .logo {
        width: 48px;
        height: 48px;
    }

    .crest-logo {
        max-width: 80%;
        width: auto;
        height: auto;
    }
}

/* Ensure header logo remains small (crest logo is handled separately) */
.brand .logo {
    width: 44px !important;
    height: 44px !important;
    border-radius: 6px;
}

.highlights {
    padding: 60px 0
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.card {
    background: #07123b;
    color: #fff;
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    text-align: center
}

.card small {
    display: block;
    margin-top: 10px;
    opacity: 0.85
}

/* Highlight stats: yellow number with stronger weight and navy gradient card */
.highlights-grid .card {
    background: linear-gradient(180deg, #031026 0%, #07123b 100%);
    padding: 28px 30px;
    color: #ffffff;
}

.highlights-grid .card .stat {
    display: block;
    color: #ffd400;
    /* bright yellow */
    font-weight: 800;
    font-size: clamp(20px, 3.2vw, 34px);
    line-height: 1;
    margin-bottom: 8px;
}

.highlights-grid .card small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    font-size: clamp(12px, 1.6vw, 14px);
}

.site-footer {
    padding: 28px 0;
    background: #061412;
    color: rgba(255, 255, 255, 0.85)
}

/* Center footer content and normalize paragraph spacing */
.site-footer .container {
    text-align: center;
}

.site-footer p {
    margin: 0;
}

/* Site sections (equal size placeholders) */
.site-section {
    min-height: var(--section-min-height);
    display: flex;
    align-items: center;
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
}

.site-section .section-inner {
    display: block
}

.site-section h2 {
    font-size: 32px;
    margin: 0 0 12px
}

.site-section p {
    max-width: 880px;
    color: rgba(4, 38, 15, 0.92);
    line-height: 1.6
}

/* Products section specific colors */
#products .section-inner h2 {
    color: #ffd400;
    /* yellow */
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

#products .section-inner .products-lead {
    color: #ffffff;
    /* white paragraph text */
    font-size: clamp(16px, 2.2vw, 20px);
    margin-top: 8px;
}

/* Products section layout: heading stays at the top; slider below it */
#products .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center heading and paragraph horizontally */
    justify-content: center;
    /* center vertically within the section */
    text-align: center;
    padding: clamp(24px, 6vh, 60px) 20px;
    height: 100%;
}

#products .section-inner h2 {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 8px;
}

#products .section-inner .products-lead {
    font-size: clamp(18px, 3.2vw, 24px);
    max-width: 900px;
    line-height: 1.6;
}

/* Product slider styles */
.product-slider {
    width: 100%;
    max-width: 1280px;
    margin-top: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 calc(var(--slider-btn-size) + var(--slider-btn-offset));
    /* reserve space for prev/next */
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 18px;
    transition: transform 360ms cubic-bezier(.2, .9, .2, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 calc((100% - 36px) / 3);
    /* show 3 slides with gap accounted */
    box-sizing: border-box;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(42, 42, 195, 0.12), rgba(51, 82, 179, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    /* make slider bigger */
    transition: transform 260ms cubic-bezier(.2, .9, .2, 1), box-shadow 260ms ease, filter 260ms ease;
    will-change: transform;
    box-shadow: 0 12px 36px rgba(2, 8, 6, 0.06);
    transform-origin: center;
    animation: slide-float 6.5s ease-in-out infinite;
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.slide:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 26px 68px rgba(2, 8, 6, 0.18);
    animation-play-state: paused;
    filter: saturate(1.05) brightness(1.03);
}

/* slide caption (top inside the slide) */
.slide {
    position: relative;
}

.slide-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    display: block;
    /* light, subtle gradient that fits the slide image border */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 250, 0.86));
    color: rgba(4, 38, 15, 0.95);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: clamp(13px, 1.6vw, 18px);
    text-align: center;
    z-index: 6;
    box-shadow: 0 10px 22px rgba(2, 8, 6, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: none;
    /* remove caption transitions so it does not animate on hover */
    pointer-events: none;
    /* make caption non-interactive */
}

/* slightly reduce caption size and ensure it's anchored at the bottom on smaller screens */
@media (max-width:1200px) {
    .slide {
        min-height: 320px;
    }
}

@media (max-width:900px) {
    .slide {
        min-height: 240px;
    }

    .slide-caption {
        font-size: clamp(12px, 2.8vw, 16px);
        bottom: 10px;
        padding: 6px 12px;
    }
}

@media (max-width:520px) {
    .slide {
        min-height: 200px;
    }

    .slide-caption {
        font-size: 14px;
        padding: 8px 10px;
    }
}

/* Per-slide themed backgrounds */
.slide--life .slide-caption {
    background: linear-gradient(90deg, #FFF7E6, #F8F5EA);
    color: #0f4b2f;
}

.slide--health .slide-caption {
    background: linear-gradient(90deg, #FFEFEF, #FFF6F7);
    color: #8a1f2d;
}

.slide--education .slide-caption {
    background: linear-gradient(90deg, #EDF6FF, #F7FBFF);
    color: #08357f;
}

.slide--retirement .slide-caption {
    background: linear-gradient(90deg, #EEFFF3, #F7FFF9);
    color: #0b5b2f;
}

.slide--investment .slide-caption {
    background: linear-gradient(90deg, #F6F0FF, #FBF9FF);
    color: #4a2b7a;
}

/* captions have no hover effect (kept static) */
.slide:hover .slide-caption {}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(4, 38, 15, 0.88);
    color: #fff;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(2, 8, 6, 0.18);
    transition: transform 180ms ease, background 180ms ease, opacity 160ms ease;
}

.slider-btn--prev {
    left: calc(var(--slider-btn-offset) * -1);
}

.slider-btn--next {
    right: calc(var(--slider-btn-offset) * -1);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(57, 194, 122, 0.98);
}

.slider-progress {
    width: 80%;
    height: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: 999px;
    overflow: hidden;
}

.slider-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd400, #39c27a);
    width: 0%;
    transition: width 320ms linear;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
}

.see-more {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Larger See more button with hover effect */
.see-more {
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 999px;
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.see-more:hover {
    background: #ffd400;
    color: #04260f;
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(255, 210, 80, 0.14);
}

/* Responsive: show 1 slide on narrow viewports */
@media (max-width:900px) {
    .slide {
        flex: 0 0 100%;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
    }

    .product-slider {
        max-width: 820px;
        padding: 0 12px;
    }

    /* reduce reserved padding for medium screens */
    :root {
        --slider-btn-size: 44px;
        --slider-btn-offset: 12px;
    }

    .product-slider {
        padding: 0 calc(var(--slider-btn-size) + var(--slider-btn-offset));
    }

    .slider-btn--prev {
        left: 8px;
    }

    .slider-btn--next {
        right: 8px;
    }
}

@media (max-width:520px) {
    .product-slider {
        padding: 0 8px;
    }

    .slider-progress {
        width: 92%;
    }

    /* show compact prev/next buttons on small screens (touch-friendly) */
    .slider-btn {
        display: flex;
        width: 40px;
        height: 40px;
        background: rgba(4, 38, 15, 0.9);
        box-shadow: 0 8px 20px rgba(2, 8, 6, 0.18);
        opacity: 0.98;
    }

    /* compact button sizing for small screens */
    :root {
        --slider-btn-size: 40px;
        --slider-btn-offset: 8px;
    }

    .product-slider {
        padding: 0 calc(var(--slider-btn-size) + var(--slider-btn-offset));
    }

    .slider-btn--prev {
        left: 8px;
    }

    .slider-btn--next {
        right: 8px;
    }

    .slider-btn svg,
    .slider-btn i {
        pointer-events: none;
    }
}

.site-section.alt {
    background: linear-gradient(180deg, rgba(6, 20, 18, 0.02), rgba(6, 20, 18, 0.01))
}

/* Make anchor navigation friendly: sections will not be hidden behind the sticky header */
.site-section,
.home-section {
    scroll-margin-top: calc(var(--nav-height) + 12px)
}

/* Ensure home section uses the canonical section height variable only */
.home-section {
    min-height: var(--section-min-height);
    padding-top: 80px;
    /* nudge home content slightly lower */
}

/* Vanta container handling */
.vanta-section {
    position: relative;
    overflow: hidden
}

.vanta-section .section-inner,
.vanta-section .container {
    position: relative;
    z-index: 1;
}

.vanta-section canvas {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    z-index: 0 !important;
}

/* Ensure Careers section Vanta canvas stays behind the content */
#careers.vanta-section .section-inner {
    position: relative;
    z-index: 2;
}

#careers.vanta-section canvas {
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Ensure Units section Vanta canvas stays behind the content */
#units.vanta-section .section-inner {
    position: relative;
    z-index: 2;
}

#units.vanta-section canvas {
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Hide fog canvases inside #units and #socials while preserving NET and DOTS canvases */
#units canvas[data-vanta="fog"],
#socials canvas[data-vanta="fog"] {
    display: none !important;
}

/* Use a GIF as the About section background, cover and stay responsive (About only) */
#about {
    background-image: url('aboutusbg.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: calc(100vh - var(--nav-height));
    padding: 0;
    position: relative;
}

#about .section-inner {
    /* restore positioned context so absolute children (slider) align and stack predictably */
    position: relative;
    z-index: 2;
    /* ensure content sits above background/Vanta canvas */
    min-height: inherit;
    /* allow it to pick up the section min-height */
    height: 100%;
    /* stretch to the parent #about height so absolute children fill it */
}

/* Make the inner container full-bleed for the About section */
#about .container {
    max-width: none;
    width: 100vw;
    padding: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 100%;
}

/* If Vanta is enabled globally, hide its canvas for the About section so the GIF is visible */
#about.vanta-section canvas {
    display: none !important;
}

/* About grid: positioned at bottom of the #about section with side margins
   Desktop: three columns in a single horizontal row. On small screens
   it becomes a stacked single-column flow (positioned relatively so it
   participates in normal document flow). */
#about .about-grid {
    position: absolute;
    /* anchor inside the .container / section-inner */
    left: clamp(12px, 3vw, 48px);
    right: clamp(12px, 3vw, 48px);
    bottom: clamp(18px, 4vh, 48px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 24px);
    width: auto;
    max-width: calc(100% - 2 * clamp(12px, 3vw, 48px));
    margin: 0 auto;
    align-items: center;
    z-index: 3;
    /* appear above background */
}

/* Card visuals: rounded, gradient border, soft glow and subtle float */
#about .about-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 10px;
    /* space for the decorative border */
    border-radius: 18px;
    border: 2px solid transparent;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), linear-gradient(90deg, #ffd400 0%, #39c27a 60%);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 18px 48px rgba(57, 194, 122, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transform: translateZ(0);
    animation: floaty-card 6s ease-in-out infinite;
    /* Desktop: keep a consistent aspect ratio so cards align nicely */
    aspect-ratio: 16 / 9;
    width: 100%;
    min-height: 0;
}

#about .about-card .about-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* fill the card while preserving aspect; switch to contain on mobile */
    object-position: center center;
    border-radius: 12px;
    margin: 0 auto;
    /* ensure image centers inside the card */
}

/* Stack at tablet portrait sizes and smaller: 1024px and 853px breakpoints */
@media (max-width:1024px) {
    #about .about-grid {
        position: relative;
        /* flow with document */
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: calc(100% - 32px);
        padding: 0 16px;
        justify-items: center;
    }

    #about .about-card {
        aspect-ratio: unset;
        padding: 8px;
        width: 100%;
        max-width: 900px;
    }

    #about .about-card .about-img {
        object-fit: contain;
        width: 100%;
        height: auto;
    }

    /* center section content vertically and horizontally when stacked */
    #about .section-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

@media (max-width:853px) {
    #about .about-grid {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: calc(100% - 24px);
        padding: 0 12px;
        justify-items: center;
    }

    #about .about-card {
        aspect-ratio: unset;
        padding: 6px;
        width: 100%;
        max-width: 700px;
    }

    #about .about-card .about-img {
        object-fit: contain;
        width: 100%;
        height: auto;
    }

    /* ensure stacked content is centered inside the About section */
    #about .section-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

@keyframes floaty-card {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Stack and adjust sizes on small screens */
@media (max-width:820px) {

    /* Small screens: stacked single-column flow and images scale without cropping */
    #about .about-grid {
        position: relative;
        /* participate in normal flow when stacked */
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: calc(100% - 24px);
        padding: 0 12px;
        justify-items: center;
    }

    #about .about-card {
        aspect-ratio: unset;
        padding: 8px;
        width: 100%;
        max-width: 600px;
    }

    #about .about-card .about-img {
        object-fit: contain;
        width: 100%;
        height: auto;
        margin: 0;
    }

    /* center when very small screens stack */
    #about .section-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

@media (max-width:480px) {

    /* Small screens: stacked column, tighter gaps */
    #about .about-grid {
        bottom: 14px;
        left: 8px;
        right: 8px;
        gap: 8px;
    }

    #about .about-card {
        padding: 6px;
        width: 100%;
        max-width: 360px;
    }

    #about .about-card .about-img {
        max-height: none;
        width: 100%;
        height: auto;
    }
}

/* About intro heading above the cards */
#about .about-intro {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: clamp(24px, 6vh, 80px);
    padding-bottom: clamp(12px, 2vh, 20px);
    margin: 0 auto clamp(18px, 4vh, 36px);
    max-width: 1200px;
}

#about .about-intro .about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* slightly lower and larger while remaining responsive */
    margin-top: clamp(20px, 9vh, 90px);
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-size: clamp(16px, 3.8vw, 30px);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(3, 18, 12, 0.12);
}

#about .about-intro h2 {
    font-size: clamp(28px, 8.4vw, 76px);
    margin: 0 0 8px;
    color: #ffd400;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    font-weight: 800;
    letter-spacing: -0.02em;
}

#about .about-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(16px, 2.4vw, 40px);
    max-width: 880px;
    text-align: center;
}

/* Grid behavior for <=820px is handled earlier to preserve the 3-up layout */
@media (max-width:820px) {
    /* intentionally empty: preserved earlier rules keep three columns and allow horizontal scroll */
}

@media (max-width:480px) {
    #about .about-card .about-img {
        max-height: 48vh;
    }
}

/* Responsive adjustments */
@media (max-width:1100px) {
    .hero-grid {
        grid-template-columns: 1fr 320px
    }

    /* medium screens: slightly reduced section sizes */
    :root {
        --hero-min-height: 65vh;
        --section-padding-top: 64px;
        --section-padding-bottom: 64px;
        --section-min-height: 360px;
    }

    .hero-left h1 {
        font-size: 56px
    }
}

/* On medium-narrow widths, left-align nav items so the first item is always visible */
@media (max-width:1180px) {
    .brand {
        max-width: 220px;
    }

    .main-nav ul {
        justify-content: flex-start;
        padding-left: 36px;
    }
}

@media (max-width:820px) {
    .nav-toggle {
        display: block
    }


    /* dropdown anchored under the hamburger (keeps position fixed relative to header) */
    .main-nav {
        position: absolute;
        right: 20px;
        /* align under the hamburger button */
        top: calc(var(--nav-height) + 8px);
        transform: none;
        transform-origin: top right;
        width: min(360px, 94vw);
        max-height: 76vh;
        background: linear-gradient(180deg, rgba(6, 20, 18, 0.98), rgba(6, 20, 18, 0.95));
        display: none;
        padding: 12px 12px;
        border-radius: 10px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
        z-index: 100001;
        overflow: auto;
    }

    .main-nav.open {
        display: block;
        animation: popFade 180ms ease-out;
    }

    .main-nav.open::before {
        /* small decorative caret aligned to the right above the dropdown (points to hamburger) */
        content: '';
        position: absolute;
        top: -8px;
        right: 28px;
        width: 16px;
        height: 16px;
        transform: rotate(45deg);
        background: linear-gradient(180deg, rgba(6, 20, 18, 0.98), rgba(6, 20, 18, 0.95));
        box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.12);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 8px 4px;
        gap: 10px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .main-nav a {
        display: inline-block;
        width: auto;
        text-align: center;
    }

    /* hide header CTAs in header; they'll be moved into nav when menu opens */
    .header-ctas {
        display: none;
    }

    /* When CTAs are moved into the nav, render them as the last block (after nav links) */
    .main-nav .header-ctas {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* Ensure nav items and CTAs are centered and tap-friendly in the modal */
    .main-nav ul {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 8px 0;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 10px 12px;
        box-sizing: border-box;
        text-align: center;
    }

    .main-nav .header-ctas {
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 0 8px;
        margin-top: 10px;
    }

    .main-nav .header-ctas .btn {
        width: min(88%, 360px);
        display: block;
        margin: 6px auto;
    }

    /* ensure menu content has room; when CTAs are appended inside nav they are part of flow */
    .main-nav.open {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-right {
        order: 2
    }

    .hero-left {
        order: 1
    }

    .hero-left h1 {
        font-size: 44px
    }

    .crest {
        height: 260px
    }

    .highlights-grid {
        grid-template-columns: 1fr
    }

    /* Make hero CTAs centered in a single row (wrap if needed) when hero-right stacks */
    .hero-ctas {
        display: flex;
        gap: 12px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .hero-ctas .btn {
        min-width: 120px;
        width: auto;
        padding: 10px 16px;
        font-size: 15px;
    }
}

/* Careers hero: centered large headline with split colors and large responsive CTA */
#careers .careers-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(48px, 12vh, 120px) 20px;
    min-height: calc(100vh - var(--nav-height));
    gap: 18px;

    border-radius: 24px;

}

.careers-title {
    margin: 0;
    font-weight: 900;
    line-height: 0.98;
    font-size: clamp(48px, 12.5vw, 120px);
    letter-spacing: -0.02em;
}

.careers-title--navy {
    color: #031026;
    display: inline-block;

    padding: 6px 10px;
    border-radius: 8px;
}

.careers-title--white {
    color: #ffffff;
    display: inline-block;

    padding: 6px 10px;
    border-radius: 8px;
}

.careers-sub {
    margin: 0;
    font-size: clamp(18px, 3.6vw, 36px);
    max-width: 880px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.careers-cta {
    margin-top: 12px;
    padding: clamp(8px, 2vw, 18px) clamp(6px, 2.5vw, 28px);
    font-size: clamp(20px, 4vw, 32px);
    border-radius: 999px;
    background: linear-gradient(360deg, #0b3a66 0%, #031026 100%);
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 20px 56px rgba(4, 28, 52, 0.36);
    transition: transform 180ms cubic-bezier(.2, .9, .2, 1), box-shadow 180ms ease, opacity 160ms ease;
    border: 2px solid rgba(255, 255, 255, 0.06);
}

.careers-cta:hover,
.careers-cta:focus {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 34px 92px rgba(4, 28, 52, 0.44);
    opacity: 1;
    background: linear-gradient(360deg, #ffd400 0%, #ffb347 100%);
    color: #04260f;
}



@media (max-width:820px) {
    .careers-title {
        font-size: clamp(28px, 10.6vw, 72px);
    }

    .careers-sub {
        font-size: clamp(14px, 3.8vw, 22px);
    }

    .careers-cta {
        font-size: clamp(16px, 4.5vw, 22px);
        padding: 12px 20px;
    }

    .careers-hero {
        padding: clamp(32px, 10vh, 64px);
        border-radius: 18px;
    }
}

/* Units section: large heading + 3 circular profile cards */
#units .units-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(48px, 10vh, 96px) 20px;
    gap: 20px;
    color: #ffffff;
}

.units-title {
    margin: 0;
    font-weight: 900;
    font-size: clamp(40px, 7.6vw, 88px);
    line-height: 1.02;
    color: var(--accent);
    /* yellow-like accent fallback */
    color: #ffd400;
    /* prominent yellow */
    text-shadow: 0 6px 18px rgba(1, 6, 12, 0.45);
}

.units-subtitle {
    margin: 0;
    font-weight: 700;
    font-size: clamp(16px, 2.6vw, 28px);
    color: rgb(0, 217, 255)
        /* green primary */
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3.6vw, 36px);
    margin-top: 18px;
    width: 100%;
    max-width: 1100px;
    align-items: start;
}

.unit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.unit-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 6px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 48px rgba(2, 8, 18, 0.48);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.unit-name {
    font-weight: 800;
    font-size: clamp(16px, 2.8vw, 20px);
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.02em;
}

@media (max-width:900px) {
    .units-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .unit-photo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width:520px) {
    .units-grid {
        grid-template-columns: 1fr;
    }

    .unit-photo {
        width: 160px;
        height: 160px;
    }

    .units-title {
        font-size: clamp(28px, 8.5vw, 44px);
    }

    .units-subtitle {
        font-size: 16px;
    }
}

/* Units CTA button */
.units-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 14px 28px;
    font-size: clamp(16px, 2.8vw, 22px);
    font-weight: 800;
    color: #04260f;
    background: linear-gradient(90deg, #ffd400 0%, #ffb347 100%);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 12px 36px rgba(255, 181, 40, 0.18);
    transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms ease, filter 220ms ease;
    position: relative;
    overflow: visible;
}

.units-cta::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60%;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    transition: width 260ms ease, opacity 260ms ease, transform 260ms ease;
    opacity: 0.9;
}

.units-cta:hover,
.units-cta:focus {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 80px rgba(255, 181, 40, 0.26);
    filter: saturate(1.02);
}

.units-cta:hover::after,
.units-cta:focus::after {
    width: 80%;
    opacity: 1;
}

@media (max-width:520px) {
    .units-cta {
        padding: 12px 20px;
        font-size: 18px;
    }
}

/* Socials section layout */
#socials .socials-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    min-height: calc(70vh - var(--nav-height));
    width: 100%;
}

.socials-row {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: none;
}

.socials-logo {
    flex: 0 0 auto;
}

.socials-main-logo {
    width: 220px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.socials-main-link {
    display: inline-block;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.socials-links {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.socials-item {
    display: block;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    padding: 18px 24px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.social-icon {
    transition: transform 180ms ease, filter 180ms ease;
    border-radius: 6px;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
}

.social-icon path {
    fill: #ffffff !important;
}

.social-text {
    font-weight: 900;
    font-size: clamp(36px, 8vw, 96px);
    color: #ffffff;
    line-height: 1;
}

.social-link:hover .social-icon,
.social-link:focus .social-icon {
    transform: scale(1.12);
    filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.55));
}

@media (max-width:820px) {
    .socials-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .socials-logo {
        order: 0;
    }

    .socials-links {
        order: 1;
        width: 100%;
    }

    .social-text {
        font-size: clamp(22px, 6vw, 44px);
    }

    .socials-main-logo {
        width: 140px;
    }
}



@keyframes popFade {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fix hero CTAs around narrower desktop widths (e.g. ~928px) so they don't stack */
@media (max-width:980px) {
    .hero-ctas {
        display: flex;
        gap: 10px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        /* keep in one row */
        margin-top: 16px;
    }

    .hero-ctas .btn {
        min-width: 0;
        padding: 8px 12px;
        font-size: clamp(15px, 1.2vw, 20px);
    }



}

@media (max-width:480px) {
    .hero {
        padding: 36px 0
    }

    .hero-left h1 {
        font-size: 34px
    }

    .lead {
        font-size: 15px
    }

    .container {
        padding: 0 16px
    }

    /* On very small screens stack CTA buttons for readability */
    .hero-ctas {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .hero-ctas .btn {
        width: 100%;
    }
}

@media (max-width:820px) {
    .site-section {
        min-height: var(--site-section-mobile-min, 320px);
        padding-top: var(--section-padding-top-mobile, 36px);
        padding-bottom: var(--section-padding-bottom-mobile, 36px)
    }

    .site-section h2 {
        font-size: 26px
    }
}

@media (max-width:480px) {
    .site-section {
        min-height: var(--site-section-small-min, 260px);
        padding-top: var(--section-padding-top-small, 28px);
        padding-bottom: var(--section-padding-bottom-small, 28px)
    }

    .site-section h2 {
        font-size: 22px
    }
}

@media (max-width:820px) {

    /* small screens: compact sections */
    :root {
        --hero-min-height: 55vh;
        --section-padding-top: 48px;
        --section-padding-bottom: 48px;
        --section-min-height: 320px;
    }
}

@media (max-width:480px) {

    /* extra small: stack and reduce heights */
    :root {
        --hero-min-height: 48vh;
        --section-padding-top: 36px;
        --section-padding-bottom: 36px;
        --section-min-height: 260px;
    }
}

/* Ensure header CTAs fit on very small screens by stacking inside the header */
@media (max-width:520px) {
    .header-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        margin-left: 0;
        padding: 6px 12px;
    }

    .header-ctas .btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* Enhanced spacing matching bepartofourteam.html on responsive pages */
.spacious .main-nav ul {
    gap: clamp(26px, 2.7vw, 48px) !important;
}

.spacious .main-nav a {
    padding: 10px 0 !important;
    font-size: clamp(14px, 0.95vw, 17px) !important;
}

.spacious .btn {
    min-height: 52px !important;
    padding: 0 22px !important;
}

.spacious .header-ctas {
    gap: 14px !important;
}

.spacious .header-ctas .btn {
    min-height: 52px !important;
    padding: 0 22px !important;
}

.spacious h1,
.spacious h2,
.spacious h3 {
    margin-bottom: 24px !important;
}

.spacious .hero-left h1 {
    margin-bottom: 32px !important;
}

.spacious .careers-title {
    margin-bottom: 28px !important;
}

.spacious .units-title {
    margin-bottom: 28px !important;
}

/* Additional button spacing for hero CTAs */
.spacious .hero-ctas {
    margin-top: 36px !important;
    gap: 14px !important;
}

.spacious .hero-ctas .btn {
    min-height: 52px !important;
    padding: 0 22px !important;
}

/* Section and content spacing */
.spacious .site-section h2 {
    margin-bottom: 28px !important;
}

.spacious .about-values-title {
    margin-bottom: 32px !important;
}

/* Responsive: maintain spacing on medium screens */
@media (max-width:1320px) and (min-width:1051px) {
    .spacious .main-nav ul {
        gap: clamp(18px, 1.8vw, 30px) !important;
    }

    .spacious .header-ctas {
        gap: 10px !important;
    }

    .spacious .header-ctas .btn {
        min-height: 48px !important;
        padding: 0 18px !important;
        font-size: 14px !important;
    }
}

@media (max-width:1050px) {
    .spacious .main-nav a {
        padding: 14px 15px !important;
        font-size: 16px !important;
    }

    .spacious .main-nav .header-ctas .btn {
        min-height: 48px !important;
        border-radius: 14px !important;
    }
}

@media (max-width:820px) {
    .spacious .hero-ctas {
        gap: 12px !important;
    }

    .spacious .hero-ctas .btn {
        padding: 12px 18px !important;
        font-size: 16px !important;
    }

    .spacious h1,
    .spacious h2,
    .spacious h3 {
        margin-bottom: 20px !important;
    }


}

@media (max-width: 520px) {

    .hero-kicker,
    .kicker {
        top: -15px;

        font-size: 11px;

        padding: 8px 12px;

        max-width: 92vw;

        white-space: normal;

        line-height: 1.4;
    }

    /* ===== MOBILE MENU FINAL DESIGN ===== */

    @media (max-width:1050px) {

        .site-header .main-nav {
            position: fixed !important;
            top: 76px !important;
            left: 14px !important;
            right: 14px !important;

            display: none;
            padding: 14px !important;

            border-radius: 26px !important;

            background:
                linear-gradient(180deg,
                    rgba(7, 22, 17, .98),
                    rgba(3, 12, 9, .98)) !important;

            border: 1px solid rgba(120, 255, 170, .14) !important;

            box-shadow:
                0 20px 60px rgba(0, 0, 0, .55),
                0 0 40px rgba(85, 212, 131, .18) !important;

            z-index: 999999 !important;
        }

        .site-header .main-nav.open {
            display: block !important;
        }

        .site-header .main-nav ul {
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .site-header .main-nav li {
            width: 100% !important;
        }

        /* ===== NAV BUTTONS ===== */

        .site-header .main-nav a {
            width: 100% !important;
            display: flex !important;
            align-items: center !important;

            min-height: 58px !important;

            padding: 0 18px !important;

            border-radius: 16px !important;

            background:
                linear-gradient(90deg,
                    rgba(255, 255, 255, .04),
                    rgba(255, 255, 255, .02)) !important;

            border: 1px solid rgba(255, 255, 255, .09) !important;

            color: #fff !important;

            font-size: 18px !important;
            font-weight: 800 !important;

            text-decoration: none !important;

            transition:
                background .25s ease,
                transform .2s ease,
                border-color .25s ease,
                color .25s ease !important;
        }

        /* ===== ACTIVE/GREEN ITEM ===== */

        .site-header .main-nav a.active,
        .site-header .main-nav a:hover {
            background:
                linear-gradient(90deg,
                    rgba(20, 120, 60, .95),
                    rgba(12, 70, 40, .95)) !important;

            border-color:
                rgba(120, 255, 170, .45) !important;

            color: #7fffb1 !important;

            box-shadow:
                0 0 22px rgba(85, 212, 131, .22) !important;
        }

        /* remove underline */
        .site-header .main-nav a::after {
            display: none !important;
        }

        /* ===== CTA BUTTON AREA ===== */

        .site-header .main-nav .header-ctas {
            display: flex !important;
            flex-direction: column !important;

            gap: 12px !important;

            margin-top: 16px !important;

            padding-top: 16px !important;

            border-top:
                1px solid rgba(255, 255, 255, .08) !important;
        }

        /* ===== INQUIRIES BUTTON ===== */

        .site-header .main-nav .btn-outline {
            width: 100% !important;

            min-height: 56px !important;

            border-radius: 16px !important;

            background: #ffffff !important;

            color: #041008 !important;

            font-size: 18px !important;
            font-weight: 900 !important;

            border: none !important;

            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        /* ===== BE PART OF OUR TEAM ===== */

        .site-header .main-nav .btn-primary {
            width: 100% !important;

            min-height: 56px !important;

            border-radius: 16px !important;

            background:
                linear-gradient(135deg,
                    #52d980,
                    #78ffad) !important;

            color: #041008 !important;

            font-size: 18px !important;
            font-weight: 900 !important;

            border: none !important;

            display: flex !important;
            align-items: center !important;
            justify-content: center !important;

            box-shadow:
                0 10px 30px rgba(85, 212, 131, .28) !important;
        }

        /* FIX TEXT CUTTING */
        .site-header .main-nav .btn {
            white-space: normal !important;
            text-align: center !important;
            line-height: 1.2 !important;
            padding: 14px 16px !important;
        }
    }

    /* ===== FINAL STEADY MOBILE HEADER FIX ===== */

    @media (max-width: 1050px) {
        body.nav-open {
            overflow: hidden !important;
        }

        .site-header {
            height: 70px !important;
            min-height: 70px !important;
            background: #061412 !important;
            transform: none !important;
        }

        .site-header .header-inner {
            width: 100% !important;
            height: 70px !important;
            min-height: 70px !important;
            padding: 0 10px !important;

            display: grid !important;
            grid-template-columns: minmax(0, 1fr) 46px !important;
            align-items: center !important;
            gap: 10px !important;

            transform: none !important;
        }

        .site-header .brand {
            grid-column: 1 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: 8px !important;

            width: 100% !important;
            min-width: 0 !important;
            max-width: 100% !important;
            flex: initial !important;

            overflow: hidden !important;
            transform: none !important;
        }

        .site-header .brand .logo {
            width: 42px !important;
            height: 42px !important;
            flex: 0 0 42px !important;
            object-fit: contain !important;
            transform: none !important;
        }

        .site-header .brand-text {
            min-width: 0 !important;
            overflow: hidden !important;
            line-height: 1.05 !important;
            transform: none !important;
        }

        .site-header .brand-text strong {
            display: block !important;
            font-size: 13px !important;
            font-weight: 900 !important;
            line-height: 1.1 !important;
            color: #fff !important;

            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
        }

        .site-header .brand-text small {
            display: block !important;
            margin-top: 3px !important;
            font-size: 10px !important;
            line-height: 1.1 !important;
            color: rgba(255, 255, 255, .88) !important;

            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
        }

        .site-header .nav-toggle {
            grid-column: 2 !important;
            justify-self: end !important;
            align-self: center !important;

            display: flex !important;
            align-items: center !important;
            justify-content: center !important;

            width: 44px !important;
            height: 44px !important;
            min-width: 44px !important;
            min-height: 44px !important;

            margin: 0 !important;
            padding: 0 !important;

            position: static !important;
            transform: none !important;

            border-radius: 14px !important;
            border: 1px solid rgba(255, 255, 255, .22) !important;
            background: rgba(255, 255, 255, .08) !important;
            color: #fff !important;

            font-size: 28px !important;
            font-weight: 900 !important;
            line-height: 1 !important;

            z-index: 100002 !important;
            cursor: pointer !important;

            box-shadow:
                0 0 18px rgba(85, 212, 131, .25),
                inset 0 1px 0 rgba(255, 255, 255, .08) !important;
        }

        .site-header>.header-inner>.header-ctas {
            display: none !important;
        }

        .site-header .main-nav {
            position: fixed !important;
            top: 82px !important;
            left: 50% !important;
            right: auto !important;

            width: min(236px, calc(100vw - 28px)) !important;
            max-height: calc(100dvh - 96px) !important;

            padding: 14px !important;
            border-radius: 24px !important;

            display: none !important;
            overflow-y: auto !important;

            background: linear-gradient(180deg, rgba(7, 22, 17, .98), rgba(3, 12, 9, .98)) !important;
            border: 1px solid rgba(120, 255, 170, .14) !important;

            box-shadow:
                0 20px 60px rgba(0, 0, 0, .55),
                0 0 40px rgba(85, 212, 131, .18) !important;

            transform: translateX(-50%) !important;
            z-index: 100000 !important;
        }

        .site-header .main-nav.open {
            display: block !important;
        }

        .site-header .main-nav ul {
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 8px !important;
            width: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .site-header .main-nav li {
            width: 100% !important;
        }

        .site-header .main-nav a {
            display: flex !important;
            align-items: center !important;

            width: 100% !important;
            min-height: 54px !important;
            padding: 0 16px !important;

            border-radius: 15px !important;
            background: rgba(255, 255, 255, .045) !important;
            border: 1px solid rgba(255, 255, 255, .09) !important;

            color: #fff !important;
            font-size: 16px !important;
            font-weight: 900 !important;
            text-align: left !important;
            text-decoration: none !important;
        }

        .site-header .main-nav a::after,
        .site-header .main-nav .nav-indicator {
            display: none !important;
        }

        .site-header .main-nav a.active,
        .site-header .main-nav a:hover {
            background: rgba(20, 120, 60, .95) !important;
            color: #7fffb1 !important;
            border-color: rgba(120, 255, 170, .45) !important;
        }

        .site-header .main-nav .mobile-menu-actions {
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;

            width: 100% !important;
            margin-top: 14px !important;
            padding-top: 14px !important;

            border-top: 1px solid rgba(255, 255, 255, .12) !important;
        }

        .site-header .main-nav .mobile-menu-actions .btn {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;

            width: 100% !important;
            min-height: 52px !important;
            padding: 12px 14px !important;

            border-radius: 15px !important;

            font-size: 15px !important;
            font-weight: 900 !important;
            line-height: 1.2 !important;
            text-align: center !important;
            white-space: normal !important;
        }

        .site-header .main-nav .mobile-menu-actions .btn-outline {
            background: #fff !important;
            color: #041008 !important;
            border: 0 !important;
        }

        .site-header .main-nav .mobile-menu-actions .btn-primary {
            background: linear-gradient(135deg, #52d980, #78ffad) !important;
            color: #041008 !important;
            border: 0 !important;
        }
    }

    @media (min-width: 1051px) {
        .site-header .nav-toggle {
            display: none !important;
        }

        .site-header .main-nav .mobile-menu-actions {
            display: none !important;
        }

        /* FIX DUPLICATE BUTTONS ON DESKTOP */
        @media (min-width: 1051px) {
            .site-header .main-nav .mobile-menu-actions {
                display: none !important;
                visibility: hidden !important;
                pointer-events: none !important;
            }

            .site-header>.header-inner>.header-ctas {
                display: flex !important;
                visibility: visible !important;
                pointer-events: auto !important;
            }
        }

        /* MOBILE: hide original desktop buttons, show hamburger buttons */
        @media (max-width: 1050px) {
            .site-header>.header-inner>.header-ctas {
                display: none !important;
                visibility: hidden !important;
                pointer-events: none !important;
            }

            .site-header .main-nav .mobile-menu-actions {
                display: flex !important;
                visibility: visible !important;
                pointer-events: auto !important;
            }
        }
    }

    /* ACTIVE MENU ITEM */
    .site-header .main-nav a.active {
        background:
            linear-gradient(90deg,
                rgba(20, 120, 60, .95),
                rgba(12, 70, 40, .95)) !important;

        color: #7fffb1 !important;

        border-color:
            rgba(120, 255, 170, .45) !important;

        box-shadow:
            0 0 22px rgba(85, 212, 131, .22) !important;
    }
.site-header .main-nav a.active {
    background: rgba(21, 52, 34, 0.95) !important;
    color: rgba(125, 229, 168)!important;
    border-color: rgba(28, 66, 43, .45) !important;
    box-shadow: 0 0 22px rgba(85,212,131,.22) !important;
}
}