@font-face {
    font-family: 'Borna';
    src: url('/static/fonts/Borna-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Borna';
    src: url('/static/fonts/Borna-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.hs-landing-page {
    background: #03081a;
}

.hs-landing section {
    padding-top: 0;
}

.hs-landing h1,
.hs-landing p,
.hs-landing .hs-landing__title,
.hs-landing .hs-landing__kicker,
.hs-landing .hs-landing__text {
    font-family: 'Borna', sans-serif !important;
}

.hs-landing__hero {
    width: 100%;
    aspect-ratio: 1920 / 620;
    overflow: hidden;
    line-height: 0;
}

.hs-landing__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hs-landing__cta {
    position: relative;
    color: #ffffff;
    isolation: isolate;
    overflow: hidden;
    /* Title + reserved meetings box — lock so bg cover does not jump on embed load */
    min-height: 1100px;
}

.hs-landing__cta-bg {
    position: absolute;
    inset: 0;
    background: url('../img/get_started_image.webp') center / cover no-repeat, #03081a;
    z-index: -1;
}

.hs-landing__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
}

.hs-landing__kicker {
    font-family: 'Borna', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #1DD191;
    margin: 0 0 0.75rem;
}

.hs-landing__title {
    font-family: 'Borna', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 1.5rem;
}

.hs-landing__text {
    font-family: 'Borna', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem;
    max-width: 640px;
}

.hs-landing__form-box {
    margin: 1.75rem auto 0;
    text-align: left;
    background: #FAF7F0;
    border-radius: 5px;
    padding: 0.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    min-height: 560px;
    overflow: visible;
    max-width: 720px;
}

.hs-landing__form-box .hs-form-frame {
    min-height: 100%;
}

.hs-landing__form-box iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 544px;
    border: 0;
}

.hs-landing__meetings {
    /* Fixed slot = HubSpot MeetingsEmbed default height — no postMessage resize of the page */
    position: relative;
    height: 756px;
    min-height: 756px;
    overflow: hidden;
    contain: layout size;
    max-width: 900px;
    margin: 1.75rem auto 0;
    border-radius: 5px;
}

.hs-landing__meetings-skel {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: linear-gradient(
        110deg,
        #FAF7F0 0%,
        #f0ebe0 45%,
        #FAF7F0 90%
    );
    background-size: 200% 100%;
    animation: hs-meetings-skel 1.4s ease-in-out infinite;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hs-landing__meetings.is-ready .hs-landing__meetings-skel,
.hs-landing__meetings:not([data-loading]) .hs-landing__meetings-skel {
    opacity: 0;
    visibility: hidden;
}

.hs-landing__meetings-skel-label {
    font-family: 'Borna', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(3, 8, 26, 0.45);
}

@keyframes hs-meetings-skel {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.hs-landing__meetings .meetings-iframe-container {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 756px;
}

.hs-landing__meetings iframe {
    display: block;
    width: 100% !important;
    min-width: 312px;
    height: 100% !important;
    min-height: 0 !important;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hs-landing__meetings-skel {
        animation: none;
        background: #FAF7F0;
        transition: none;
    }
}

@media (max-width: 700px) {
    .hs-landing__cta {
        min-height: 980px;
    }
    .hs-landing__title {
        font-size: 34px;
    }
    .hs-landing__kicker {
        font-size: 20px;
    }
    .hs-landing__meetings {
        height: 680px;
        min-height: 680px;
    }
    .hs-landing__meetings .meetings-iframe-container {
        min-height: 680px;
    }
}
