/*###################################################*/
/*...................................................*/
/* hero                                              */
/*...................................................*/
/*###################################################*/

/*-------------------------------*/
/* hero section shell            */
/*-------------------------------*/
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}
/*-------------------------------*/
/* end hero section shell        */
/*-------------------------------*/

/*-------------------------------*/
/* nexus background canvas       */
/*-------------------------------*/
.heroBackground {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}
/*-------------------------------*/
/* end nexus background canvas   */
/*-------------------------------*/

/*-------------------------------*/
/* hero content wrapper          */
/*-------------------------------*/
.heroContent {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content:space-around;
    flex-direction: column;
    flex: 1;
    max-width: 1824px;
    min-height: 100vh;
    margin: 1px auto !important;

    padding: 1.5rem 1.25rem 2.5rem;

    @media (min-width: 768px) {
        padding: 0.5rem 3rem 3rem;
        min-height: calc(100dvh - var(--nav-height));
    }

    @media (min-width: 1200px) {
        padding: 2.5rem 5rem 4rem;
        min-height: calc(100dvh - var(--nav-height));
    }
}
/*-------------------------------*/
/* end hero content wrapper      */
/*-------------------------------*/

/*-------------------------------*/
/* hero logo                     */
/*-------------------------------*/
.heroLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1.5rem, 2vh, 3rem) 0 clamp(2rem, 3vh, 4rem);
    margin: 0;
}

.heroLogoSvg {
    width: clamp(200px, 60%, 560px);
    height: auto;
    display: block;

    @media (min-width: 768px) {
        width: clamp(280px, 22vw + 4vh, 620px);
    }
}
/*-------------------------------*/
/* end hero logo                 */
/*-------------------------------*/

/*-------------------------------*/
/* hero badge                    */
/*-------------------------------*/
.heroBadge {
    display: none;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    margin: 0 0 1.5rem 0;
    width: fit-content;

    @media (min-width: 768px) {
        display: inline-flex;
    }
}

.heroBadgeDot {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--contrast);
    border-radius: 50%;
    flex-shrink: 0;
}
/*-------------------------------*/
/* end hero badge                */
/*-------------------------------*/

/*-------------------------------*/
/* hero headline                 */
/*-------------------------------*/
.heroHeadline {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 2vw + 1.2vh, 4.8rem);
    font-weight: 700;
    line-height: 1.06;
    color: var(--text);
    margin: 0 0 clamp(1rem, 2vh, 2rem) 0;
    max-width: 90%;
}
/*-------------------------------*/
/* end hero headline             */
/*-------------------------------*/

/*-------------------------------*/
/* hero subtitle                 */
/*-------------------------------*/
.heroSubtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 0.5vw + 1vh, 1.3rem);
    color: rgba(248, 242, 242, 0.6);
    line-height: 1.65;
    margin: 0 0 clamp(1.5rem, 3vh, 3rem) 0;
    max-width: 90%;
}
/*-------------------------------*/
/* end hero subtitle             */
/*-------------------------------*/

/*-------------------------------*/
/* hero CTA buttons              */
/*-------------------------------*/
.heroCtas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: auto;
}

.heroCta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, border-color 180ms ease;

    &:hover {
        transform: translateY(-1px);
    }

    &:active {
        transform: translateY(0);
    }
}

.heroCta--primary {
    background: var(--primary);
    color: white;
    border: 1px solid transparent;

    &:hover {
        background: var(--primary-mono);
    }
	&:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
	}
}

.heroCta--secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.3);

    &:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.05);
    }
	&:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
	}
}
/*-------------------------------*/
/* end hero CTA buttons          */
/*-------------------------------*/

/*-------------------------------*/
/* hero stats bar                */
/*-------------------------------*/
.heroStats {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: clamp(1.5rem, 2.5vh, 3rem);
    margin-top: clamp(2rem, 3vh, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;


    @media (min-width: 768px) {
        gap: 2.5rem;
        flex-wrap: nowrap;
    }
}

.heroStat {
    align-items: baseline;
    gap: 0.3rem;
}

.heroStatNumber {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 1vw + 0.5vh, 1rem);
    font-weight: 700;
    color: var(--primary);
}

.heroStatLabel {
    font-family: var(--font-body);
    font-size: clamp(0.87rem, 0.5vw + 0.5vh, 1.4rem);
    color: rgba(248, 242, 242, 0.55);
}

.heroStatDivider {
    width: 1px;
    height: 1.4rem;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    display: none;

    @media (min-width: 768px) {
        display: block;
    }
}
/*-------------------------------*/
/* end hero stats bar            */
/*-------------------------------*/


/*###################################################*/
/*...................................................*/
/* end hero                                          */
/*...................................................*/
/*###################################################*/
