/* #region Hero Section */

.hero-section {
    position: relative;
    min-height: calc(100svh - var(--nav-height));
    display: block;
    overflow: hidden;
    background: var(--color-paper);
    color: var(--color-ink);
    padding: 0;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--color-ink-052) 1px, var(--color-transparent) 1px),
        linear-gradient(90deg, var(--color-ink-052) 1px, var(--color-transparent) 1px);
    background-position: center top;
    background-size: 40px 40px;
    -webkit-mask-image: linear-gradient(180deg, var(--color-black) 0%, var(--color-mask-92) 58%, var(--color-mask-42) 100%);
    mask-image: linear-gradient(180deg, var(--color-black) 0%, var(--color-mask-92) 58%, var(--color-mask-42) 100%);
    opacity: 1;
}

.hero-section .site-shell {
    width: min(1760px, calc(100% - 56px));
}

.hero-inner {
    --hero-home-group-offset-y: 36px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, 0.78fr) minmax(520px, 0.92fr);
    grid-template-areas:
        "copy bottom"
        "visual visual";
    grid-template-rows: auto minmax(250px, 1fr);
    min-height: calc(100svh - var(--nav-height));
    column-gap: clamp(38px, 5vw, 88px);
    row-gap: clamp(22px, 3.8vh, 42px);
    align-items: start;
    align-content: stretch;
    margin-top: var(--hero-home-group-offset-y);
    padding: clamp(118px, 13.5vh, 150px) 0 clamp(18px, 3vh, 34px);
}

.hero-copy {
    grid-area: copy;
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.hero-visual {
    grid-area: visual;
    position: relative;
    z-index: 1;
    align-self: end;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-width: 0;
    pointer-events: none;
}

.hero-arc-stage {
    position: relative;
    margin: 0;
    display: block;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: var(--color-transparent);
    box-shadow: none;
}

.hero-arc-video {
    --hero-arc-offset-y: clamp(-184px, -15vh, -132px);
    display: block;
    width: min(94vw, 1760px);
    max-width: none;
    height: min(46svh, 440px);
    max-height: none;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    mix-blend-mode: normal;
    filter: saturate(0.9) contrast(0.9) brightness(1.06);
    transform: translateY(var(--hero-arc-offset-y));
    transform-origin: center;
}

.hero-form-media {
    display: none;
}

.hero-credit-link {
    display: none;
}

.hero-form-preview {
    display: block;
}

.hero-form-video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-inner h1 {
    color: var(--color-ink);
    font-weight: 600;
}

#hero-title {
    font-size: 3.2rem;
}

.hero-title-line {
    display: block;
}

.hero-inner h1:focus {
    outline: none;
}

.hero-lede {
    max-width: 560px;
    margin-top: 18px;
    color: var(--color-text);
    font-size: clamp(1.08rem, 1.05vw, 1.24rem);
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-bottom {
    grid-area: bottom;
    align-self: center;
    justify-self: end;
    width: min(475px, 100%);
    max-width: 475px;
    margin-top: 0;
    padding: 18px 20px;
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-ink-10);
    border-radius: 6px;
}

.hero-bottom::before {
    content: none;
}

.hero-bottom::after {
    content: none;
}

.hero-proof-heading {
    display: none;
    margin: 0;
}

.hero-proof-heading::after {
    content: none;
}

.hero-proof-mark {
    display: none;
}

.hero-proof-label {
    margin: 0 0 14px;
    color: var(--color-steel);
    font-size: 0.62rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    border: 0;
    align-items: center;
    text-align: center;
}

.hero-facts div {
    position: relative;
    min-width: 0;
    padding: 0 10px;
    border-left: 1px solid var(--color-ink-10);
}

.hero-facts div::before {
    content: none;
}

.hero-facts div:first-child {
    padding-left: 10px;
    border-left: 0;
}

.hero-facts dt {
    color: var(--color-accent);
    font-size: clamp(1.08rem, 1.08vw, 1.22rem);
    font-weight: 760;
    line-height: 1.1;
}

.hero-facts dd {
    margin: 7px 0 0;
    color: var(--color-text);
    font-size: 0.72rem;
    line-height: 1.35;
}

@media (min-width: 1101px) {
    #hero-title {
        font-size: 3.48rem;
    }

    .hero-bottom {
        align-self: start;
        width: min(445px, 100%);
        max-width: 445px;
        min-height: 96px;
        margin-top: 52px;
        padding: 20px 24px 16px 30px;
    }

    .hero-bottom::before {
        content: "";
        position: absolute;
        top: 18px;
        bottom: 18px;
        left: 16px;
        width: 2px;
        background: var(--color-accent);
    }

    .hero-proof-heading {
        position: absolute;
        top: 20px;
        left: 30px;
        z-index: 1;
        display: block;
        margin: 0;
    }

    .hero-proof-label {
        margin: 0;
    }

    .hero-facts {
        text-align: left;
    }

    .hero-facts div {
        padding: 24px 20px 0;
    }

    .hero-facts div:first-child {
        padding-left: 0;
    }

    .hero-bottom .hero-facts dt {
        font-size: clamp(1.48rem, 1.52vw, 1.76rem);
    }

    .hero-bottom .hero-facts dd {
        margin-top: 8px;
        font-size: clamp(0.76rem, 0.72vw, 0.84rem);
    }
}

.hero-main-support {
    position: absolute;
    left: 0;
    bottom: clamp(96px, 10vh, 132px);
    z-index: 3;
    display: grid;
    justify-items: start;
    gap: 8px;
    color: var(--color-ink);
}

.hero-main-support span {
    color: var(--color-steel);
    font-size: 0.48rem;
    font-weight: 520;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-main-support img {
    width: min(72px, 100%);
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-main-support a {
    color: var(--color-steel);
    font-size: 0.45rem;
    font-weight: 520;
    line-height: 1;
    margin-top: -3px;
    text-decoration: none;
    white-space: nowrap;
}

.hero-main-support a:hover {
    color: var(--color-accent-dark);
}

/* #endregion Hero Section */

