.khs-hero {
    --khs-accent: #f3c400;
    --khs-red: #e30613;
    --khs-text: #ffffff;
    --khs-overlay: 0.55;
    --khs-height: 830px;
    --khs-height-mobile: 720px;
    --khs-bg-image: none;
    --khs-bg-scale: 1.14;
    position: relative;
    overflow: hidden;
    min-height: var(--khs-height);
    color: var(--khs-text);
    background-color: #050505;
    background-image: none;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    isolation: isolate;
}

.khs-hero::before {
    position: absolute;
    inset: 0;
    z-index: -4;
    content: "";
    background-image: var(--khs-bg-image);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(var(--khs-bg-scale));
    transform-origin: center center;
}
.khs-hero *,
.khs-hero *::before,
.khs-hero *::after {
    box-sizing: border-box;
}
.khs-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,calc(var(--khs-overlay) * 1.08)) 0%,
        rgba(0,0,0,calc(var(--khs-overlay) * .96)) 35%,
        rgba(0,0,0,calc(var(--khs-overlay) * .58)) 61%,
        rgba(0,0,0,calc(var(--khs-overlay) * .25)) 100%
    );
}
.khs-hero__dots {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(27vw, 410px);
    z-index: -2;
    opacity: .14;
    background-image: radial-gradient(circle, rgba(255,255,255,.58) 1px, transparent 1.35px);
    background-size: 12px 12px;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.12) 100%);
}
.khs-hero__stripes {
    position: absolute;
    top: -90px;
    right: -155px;
    width: 320px;
    height: calc(100% + 180px);
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
        115deg,
        transparent 0 28%,
        rgba(243,196,0,.9) 28% 37%,
        transparent 37% 42%,
        rgba(227,6,19,.9) 42% 51%,
        transparent 51% 100%
    );
}
.khs-hero__container {
    width: min(calc(100% - 120px), 1500px);
    margin-inline: auto;
    min-height: var(--khs-height);
    display: grid;
    align-items: stretch;
    position: relative;
    z-index: 2;
}
.khs-hero--background-only .khs-hero__container {
    grid-template-columns: 1fr;
}
.khs-hero--has-foreground .khs-hero__container {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
}
.khs-hero__content {
    width: 100%;
    max-width: 850px;
    padding: 82px 0 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.khs-hero--has-foreground .khs-hero__content {
    max-width: 760px;
}
.khs-hero__eyebrow {
    margin: 0 0 18px;
    color: var(--khs-accent);
    font-size: clamp(16px, 1.12vw, 21px);
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
}
.khs-hero__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: .98;
}
.khs-hero__title-line {
    display: block;
    font-size: clamp(36px, 3.25vw, 56px);
    font-weight: 700;
    letter-spacing: -.022em;
    text-transform: uppercase;
}
.khs-hero__title-line--highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .18em;
    width: max-content;
    max-width: 100%;
    padding: .04em 0 .10em;
    overflow: visible;
    font-size: clamp(50px, 4.65vw, 78px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--khs-accent);
}
.khs-hero__highlight-accent {
    color: var(--khs-accent);
}
.khs-hero__highlight-red {
    color: var(--khs-red);
}
.khs-hero__description {
    margin-top: 22px;
    max-width: 690px;
    color: rgba(255,255,255,.9);
    font-size: clamp(16px, 1.12vw, 20px);
    line-height: 1.55;
}
.khs-hero__description p {
    margin: 0;
}
.khs-hero__description strong {
    font-weight: 700;
}
.khs-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}
.khs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 68px;
    padding: 14px 30px;
    border: 1px solid transparent;
    border-radius: 7px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .005em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.khs-button:hover {
    transform: translateY(-2px);
}
.khs-button--primary {
    min-width: 345px;
    color: #111111;
    background: var(--khs-accent);
    box-shadow: 0 14px 28px rgba(243,196,0,.14);
}
.khs-button--secondary {
    min-width: 302px;
    color: var(--khs-text);
    border-color: rgba(243,196,0,.9);
    background: rgba(0,0,0,.18);
}
.khs-button__icon,
.khs-button__arrow {
    display: grid;
    place-items: center;
}
.khs-icon {
    display: block;
    width: 24px;
    height: 24px;
}
.khs-button__icon .khs-icon,
.khs-button__arrow .khs-icon {
    width: 23px;
    height: 23px;
}
.khs-button__arrow {
    margin-left: auto;
}
.khs-hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 940px);
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.16);
}
.khs-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    padding-right: 28px;
}
.khs-feature + .khs-feature {
    padding-left: 28px;
    border-left: 1px solid rgba(255,255,255,.18);
}
.khs-feature__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    color: var(--khs-accent);
}
.khs-feature__icon .khs-icon {
    width: 38px;
    height: 38px;
}
.khs-feature__copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}
.khs-feature__copy strong {
    display: block;
    color: var(--khs-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}
.khs-feature__copy span {
    display: block;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.35;
}
.khs-hero__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 30px;
}
.khs-hero__visual img,
.khs-hero__visual .khs-hero__foreground-image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(100%, 660px);
    max-height: calc(var(--khs-height) - 18px);
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 26px 48px rgba(0,0,0,.45));
}
.khs-hero__bottom-accent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    z-index: 2;
    background: var(--khs-accent);
}
@media (max-width: 1250px) {
    .khs-hero__container {
        width: min(calc(100% - 64px), 1450px);
    }
    .khs-hero__content {
        max-width: 760px;
        padding-block: 74px 66px;
    }
    .khs-hero__title-line {
        font-size: clamp(34px, 3.7vw, 52px);
    }
    .khs-hero__title-line--highlight {
        font-size: clamp(48px, 5vw, 70px);
    }
    .khs-button--primary,
    .khs-button--secondary {
        min-width: 0;
    }
}
@media (max-width: 980px) {
    .khs-hero {
        min-height: var(--khs-height-mobile);
    }
    .khs-hero::before {
        background-image: var(--khs-bg-image-mobile, var(--khs-bg-image));
    }
    .khs-hero__container,
    .khs-hero--has-foreground .khs-hero__container {
        min-height: var(--khs-height-mobile);
        grid-template-columns: 1fr;
    }
    .khs-hero__content,
    .khs-hero--has-foreground .khs-hero__content {
        max-width: 100%;
        padding: 62px 0 28px;
    }
    .khs-hero__visual {
        min-height: 300px;
        padding-top: 0;
        justify-content: center;
    }
    .khs-hero__visual img {
        max-width: min(80vw, 500px);
        max-height: 420px;
    }
    .khs-hero__features {
        width: 100%;
    }
}
@media (max-width: 720px) {
    .khs-hero__container {
        width: min(calc(100% - 30px), 1450px);
    }
    .khs-hero__features {
        grid-template-columns: 1fr;
    }
    .khs-feature {
        padding: 0 0 18px;
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }
    .khs-feature + .khs-feature {
        padding-left: 0;
        border-left: 0;
    }
    .khs-feature:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }
}
@media (max-width: 640px) {
    .khs-hero__content {
        padding: 42px 0 24px;
    }
    .khs-hero__eyebrow {
        margin-bottom: 12px;
        font-size: 14px;
    }
    .khs-hero__title-line {
        font-size: clamp(28px, 8.5vw, 43px);
    }
    .khs-hero__title-line--highlight {
        gap: .16em;
        padding-bottom: .12em;
        font-size: clamp(40px, 12vw, 58px);
        line-height: 1.08;
    }
    .khs-hero__description {
        margin-top: 18px;
        font-size: 15px;
    }
    .khs-hero__actions {
        gap: 14px;
        margin-top: 27px;
    }
    .khs-button {
        width: 100%;
        min-height: 58px;
        padding-inline: 20px;
        font-size: 14px;
    }
    .khs-hero__stripes {
        right: -210px;
        width: 280px;
        opacity: .8;
    }
    .khs-hero__dots {
        width: 58vw;
    }
}

.entry-content > .khs-hero {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
