/* =========================================================
   VINCIT PARTNERS
   COMING SOON PAGE
========================================================= */

:root {

    --navy: #073d5b;
    --navy-deep: #062f47;

    --green: #2d995d;
    --green-bright: #42b66d;

    --gold: #e7aa36;
    --gold-light: #f0bd50;

    --white: #ffffff;
    --off-white: #f6f7f5;

    --text: #174d6d;
    --muted: #68839a;

    --border: rgba(7, 61, 91, .15);

    --serif: Georgia, "Times New Roman", serif;

    --sans:
        Arial,
        Helvetica,
        sans-serif;

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    background: var(--off-white);

    color: var(--text);

    font-family: var(--sans);

    -webkit-font-smoothing: antialiased;

}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   PAGE SHELL
========================================================= */

.page-shell {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: absolute;

    top: 34px;
    left: 0;

    width: 100%;

    z-index: 20;

    border-bottom:
        1px solid rgba(255,255,255,.12);

}

.header-inner {

    width: min(1240px, calc(100% - 110px));

    margin: auto;

    min-height: 100px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* BRAND */

.brand {

    display: flex;

    align-items: center;

    gap: 14px;

}

.brand-mark {

    position: relative;

    width: 45px;
    height: 48px;

}

.mark-v {

    font-family: var(--serif);

    font-size: 46px;

    font-weight: 700;

    color: var(--white);

    line-height: 1;

}

.mark-line {

    position: absolute;

    width: 28px;

    height: 2px;

    background: var(--gold);

    right: 0;

    top: 12px;

    transform: rotate(-35deg);

}

.brand-text {

    display: flex;

    flex-direction: column;

}

.brand-text strong {

    color: var(--white);

    font-family: var(--serif);

    font-size: 23px;

    letter-spacing: 3px;

}

.brand-text span {

    margin-top: 4px;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 700;

}


/* HEADER CONTACT */

.header-contact {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    padding: 14px 22px;

    border: 1px solid rgba(255,255,255,.35);

    transition: .3s ease;

}

.header-contact span {

    color: var(--gold);

    font-size: 18px;

}

.header-contact:hover {

    background: var(--green);

    border-color: var(--green);

}


/* =========================================================
   HERO
========================================================= */

.coming-soon-hero {

    position: relative;

    min-height: 825px;

    background: var(--navy);

    display: flex;

    align-items: center;

    padding:
        175px
        max(55px, calc((100vw - 1240px) / 2))
        110px;

    overflow: hidden;

}


/* DECORATIVE GRID */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(
            rgba(255,255,255,.3) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.3) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 45%,
            transparent
        );

}


/* CIRCLES */

.hero-circle {

    position: absolute;

    border:
        1px solid rgba(231,170,54,.28);

    border-radius: 50%;

}

.circle-one {

    width: 580px;
    height: 580px;

    right: -180px;
    top: -180px;

}

.circle-two {

    width: 260px;
    height: 260px;

    left: -170px;
    bottom: -150px;

    border-color:
        rgba(66,182,109,.2);

}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    width: 760px;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}

.eyebrow span {

    width: 35px;

    height: 1px;

    background: var(--gold);

    display: inline-block;

}


.hero-content h1 {

    margin: 30px 0 24px;

    font-family: var(--serif);

    font-size: clamp(68px, 8vw, 118px);

    line-height: .88;

    letter-spacing: -5px;

    font-weight: 700;

}


.hero-content h1 span {

    display: block;

}

.white {
    color: var(--white);
}

.gold {
    color: var(--gold);
}

.green {
    color: var(--green-bright);
}


.hero-rule {

    width: 50px;

    height: 2px;

    background: var(--gold);

    margin: 28px 0;

}


.hero-lead {

    max-width: 700px;

    margin: 0;

    color: var(--white);

    font-size: 25px;

    line-height: 1.45;

    font-weight: 400;

}


.hero-description {

    max-width: 650px;

    margin:
        18px
        0
        28px;

    color: rgba(255,255,255,.70);

    font-size: 16px;

    line-height: 1.75;

}


/* COMING BADGE */

/* =========================================================
   TOP COMING SOON ANNOUNCEMENT
========================================================= */

.top-announcement {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 34px;

    background: var(--gold);

    color: var(--navy);

    z-index: 100;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 10px;

    letter-spacing: 1.8px;

    font-weight: 700;

}

.announcement-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 4px rgba(45,153,93,.15);

}

.announcement-divider {

    opacity: .55;

}


/* =========================================================
   LAUNCH STATUS
========================================================= */

.launch-status {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 10px 16px;

    margin-top: 5px;

    border:
        1px solid rgba(231,170,54,.45);

    background:
        rgba(231,170,54,.07);

}


.launch-status-main {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--gold-light);

    font-size: 13px;

    letter-spacing: 2px;

}


.launch-status-sub {

    padding-left: 18px;

    border-left:
        1px solid rgba(255,255,255,.2);

    color: rgba(255,255,255,.65);

    font-size: 11px;

    letter-spacing: .7px;

}


.status-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--green-bright);

    box-shadow:
        0 0 0 5px rgba(66,182,109,.12);

}


/* HERO BUTTONS */

.hero-actions {

    display: flex;

    gap: 14px;

    margin-top: 30px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    min-height: 52px;

    padding: 0 25px;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;

}


.btn-primary {

    color: var(--white);

    background: var(--green);

}

.btn-primary:hover {

    background: var(--green-bright);

    transform: translateY(-2px);

}

.btn-primary span {

    color: var(--gold-light);

    font-size: 19px;

}


.btn-outline {

    color: var(--white);

    border:
        1px solid rgba(255,255,255,.35);

}

.btn-outline:hover {

    background: rgba(255,255,255,.08);

    border-color: var(--white);

}


/* =========================================================
   HERO SIDE
========================================================= */

.hero-side {

    position: absolute;

    right:
        max(55px, calc((100vw - 1240px) / 2));

    bottom: 105px;

    width: 270px;

    z-index: 3;

    border-left:
        1px solid rgba(255,255,255,.25);

    padding-left: 25px;

}


.side-number {

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 16px;

}

.side-line {

    width: 35px;

    height: 1px;

    background: var(--green);

    margin-bottom: 22px;

}


.hero-side p {

    margin: 0 0 15px;

    color: var(--white);

    font-family: var(--serif);

    font-size: 25px;

    line-height: 1.3;

}

.hero-side p span {

    color: var(--green-bright);

    padding: 0 5px;

}

.hero-side small {

    color: rgba(255,255,255,.55);

    font-size: 11px;

    letter-spacing: 1px;

}


/* =========================================================
   INTRO STRIP
========================================================= */

.intro-strip {

    background: var(--white);

    padding: 105px 0;

}


.intro-inner {

    width: min(1240px, calc(100% - 110px));

    margin: auto;

    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 90px;

}


.intro-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.intro-label span {

    width: 34px;

    height: 1px;

    background: var(--gold);

}


.intro-content {

    max-width: 850px;

}


.intro-content h2 {

    margin: 0 0 25px;

    font-family: var(--serif);

    color: var(--navy);

    font-size: clamp(42px, 5vw, 65px);

    line-height: .98;

    letter-spacing: -2px;

}


.intro-content p {

    margin: 0;

    color: var(--muted);

    max-width: 760px;

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   PILLARS
========================================================= */

.pillars {

    background: var(--off-white);

    padding: 110px 0;

}


.section-heading {

    width: min(1240px, calc(100% - 110px));

    margin: 0 auto 55px;

}


.eyebrow.dark {

    color: var(--green);

}

.eyebrow.dark span {

    background: var(--gold);

}


.section-heading h2 {

    max-width: 750px;

    margin: 25px 0 0;

    font-family: var(--serif);

    font-size: clamp(45px, 5vw, 68px);

    line-height: .98;

    letter-spacing: -2px;

    color: var(--navy);

}


.section-heading h2 span {

    color: var(--green);

}


.pillar-grid {

    width: min(1240px, calc(100% - 110px));

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.pillar-card {

    padding: 45px 35px 50px;

    min-height: 280px;

    border-right:
        1px solid var(--border);

}

.pillar-card:last-child {

    border-right: none;

}


.pillar-card.featured {

    background: var(--navy);

}


.pillar-number {

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 55px;

}


.pillar-card h3 {

    margin: 0 0 14px;

    font-family: var(--serif);

    color: var(--navy);

    font-size: 38px;

}


.pillar-card p {

    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;

}


.pillar-card.featured h3 {

    color: var(--white);

}

.pillar-card.featured p {

    color: rgba(255,255,255,.68);

}


/* =========================================================
   REGIONAL
========================================================= */

.regional {

    background: var(--navy-deep);

    padding: 75px 0;

}


.regional-inner {

    width: min(1240px, calc(100% - 110px));

    margin: auto;

    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 90px;

    align-items: center;

}


.eyebrow.light {

    color: var(--gold);

}


.regional-content h2 {

    margin: 0 0 15px;

    font-family: var(--serif);

    font-size: clamp(35px, 4vw, 54px);

    color: var(--white);

}


.regional-content h2 span {

    color: var(--green-bright);

    padding: 0 10px;

}


.regional-content p {

    max-width: 780px;

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    background: var(--green);

    padding: 120px 0;

}


.cta-inner {

    width: min(1240px, calc(100% - 110px));

    margin: auto;

}


.cta-inner .eyebrow {

    color: var(--gold-light);

}


.cta-inner h2 {

    max-width: 900px;

    margin: 30px 0 25px;

    color: var(--white);

    font-family: var(--serif);

    font-size: clamp(55px, 6vw, 85px);

    line-height: .95;

    letter-spacing: -3px;

}


.cta-inner h2 span {

    color: var(--gold-light);

}


.cta-inner p {

    max-width: 650px;

    color: rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 30px;

}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 17px 28px;

    background: var(--white);

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;

}


.cta-button span {

    color: var(--gold);

    font-size: 20px;

}


.cta-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.12);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: var(--navy);

    color: rgba(255,255,255,.65);

}


.footer-inner {

    width: min(1240px, calc(100% - 110px));

    margin: auto;

    min-height: 150px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 40px;

}


.footer-brand {

    display: flex;

    flex-direction: column;

}


.footer-brand strong {

    color: var(--white);

    font-family: var(--serif);

    font-size: 28px;

    letter-spacing: 3px;

}


.footer-brand span {

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 1.7px;

    font-weight: 700;

    margin-top: 4px;

}


.footer-location {

    text-align: center;

    font-size: 13px;

}


.footer-location span {

    color: var(--green-bright);

    padding: 0 6px;

}


.footer-contact {

    text-align: right;

}


.footer-contact a {

    color: var(--white);

    font-size: 14px;

}


.footer-contact a:hover {

    color: var(--gold);

}


.footer-bottom {

    width: min(1240px, calc(100% - 110px));

    margin: auto;

    padding: 20px 0;

    border-top:
        1px solid rgba(255,255,255,.12);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-size: 11px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .header-inner,
    .intro-inner,
    .section-heading,
    .pillar-grid,
    .regional-inner,
    .cta-inner,
    .footer-inner,
    .footer-bottom {

        width: min(100% - 60px, 900px);

    }


    .coming-soon-hero {

        padding-left: 30px;
        padding-right: 30px;

    }


    .hero-content {

        width: 75%;

    }


    .hero-side {

        right: 30px;

        width: 210px;

    }


    .intro-inner,
    .regional-inner {

        grid-template-columns:
            190px 1fr;

        gap: 50px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .site-header {

        position: absolute;

    }


    .header-inner {

        width: calc(100% - 36px);

        min-height: 80px;

    }


    .brand-mark {

        width: 35px;
        height: 40px;

    }


    .mark-v {

        font-size: 38px;

    }


    .brand-text strong {

        font-size: 18px;

        letter-spacing: 2px;

    }


    .brand-text span {

        font-size: 6px;

        letter-spacing: 1px;

    }


    .header-contact {

        padding: 10px 13px;

        font-size: 11px;

    }


    .coming-soon-hero {

        min-height: auto;

        padding:
            145px
            25px
            85px;

        display: block;

    }


    .hero-content {

        width: 100%;

    }


    .hero-content h1 {

        font-size: clamp(57px, 16vw, 85px);

        letter-spacing: -3px;

        line-height: .9;

        margin-top: 25px;

    }


    .hero-lead {

        font-size: 20px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-side {

        position: relative;

        right: auto;

        bottom: auto;

        width: 100%;

        margin-top: 65px;

    }


    .hero-circle.circle-one {

        width: 400px;
        height: 400px;

        right: -250px;

        top: -120px;

    }


    .intro-strip,
    .pillars,
    .final-cta {

        padding:
            75px 0;

    }


    .intro-inner,
    .regional-inner {

        width: calc(100% - 50px);

        display: block;

    }


    .intro-label {

        margin-bottom: 30px;

    }


    .intro-content h2 {

        font-size: 43px;

    }


    .intro-content p {

        font-size: 16px;

    }


    .section-heading {

        width: calc(100% - 50px);

    }


    .section-heading h2 {

        font-size: 45px;

    }


    .pillar-grid {

        width: calc(100% - 50px);

        display: block;

    }


    .pillar-card {

        border-right: none;

        border-bottom:
            1px solid var(--border);

    }


    .pillar-card:last-child {

        border-bottom: none;

    }


    .regional-inner .eyebrow {

        margin-bottom: 25px;

    }


    .regional-content h2 {

        font-size: 35px;

        line-height: 1.15;

    }


    .regional-content h2 span {

        padding: 0 4px;

    }


    .cta-inner {

        width: calc(100% - 50px);

    }


    .cta-inner h2 {

        font-size: 54px;

        letter-spacing: -2px;

    }


    .cta-inner p {

        font-size: 15px;

    }


    .footer-inner {

        width: calc(100% - 50px);

        padding: 45px 0;

        display: block;

    }


    .footer-location {

        text-align: left;

        margin-top: 30px;

    }


    .footer-contact {

        text-align: left;

        margin-top: 20px;

    }


    .footer-bottom {

        width: calc(100% - 50px);

        display: block;

        line-height: 1.7;

        padding-bottom: 30px;

    }


    .footer-bottom span {

        display: block;

    }


    .footer-bottom span + span {

        margin-top: 8px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .header-contact {

        display: none;

    }


    .hero-actions {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .hero-content h1 {

        font-size: 54px;

    }

}