@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;700;800;900&family=Space+Grotesk:wght@700&display=swap");

.ts-hero,
.ts-hero * {
    box-sizing: border-box;
}

.ts-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 464px;
    padding: 40px 24px 0;
    overflow: hidden;
    color: #ffffff;
    background: #e51616;
    font-family: "Inter", Arial, sans-serif;
}

.ts-hero__photos,
.ts-hero__photo,
.ts-hero__red-wash,
.ts-hero__red-gradient {
    position: absolute;
    inset: 0;
}

.ts-hero__photos {
    z-index: 0;
}

.ts-hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.ts-hero__photo.is-active {
    opacity: 1;
}

.ts-hero__red-wash {
    z-index: 1;
    background: rgba(229, 22, 22, 0.85);
}

.ts-hero__red-gradient {
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(229, 22, 22, 0.95) 0%,
        rgba(229, 22, 22, 0.82) 50%,
        rgba(229, 22, 22, 0.72) 100%
    );
}

.ts-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1324px;
    margin: 0 auto;
}

.ts-hero__copy {
    max-width: 1160px;
}

.ts-hero__eyebrow {
    margin: 70px 0 0;
    color: #ffffff;
    font-family: "Space Grotesk", "Inter", Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.ts-hero__lead {
    margin: 0;
    color: #fff200;
    font-family: "Inter", Arial, sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ts-hero__typewriter {
    min-height: 110px;
    margin-top: 22px;
    color: #ffffff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.ts-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 40px;
    padding-bottom: 40px;
}

.ts-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 32px;
    border: 0;
    border-radius: 5px;
    color: #ffffff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, filter 180ms ease;
}

.ts-hero__button:hover,
.ts-hero__button:focus {
    color: #ffffff;
    text-decoration: none;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.ts-hero__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.ts-hero__button--primary {
    min-width: 220px;
    background: #067bd5;
}

.ts-hero__button--secondary {
    min-width: 172px;
    background: #0036a8;
}

.ts-hero__strip {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: 19.3% 20.2% 20.1% 20.1% 20.3%;
    height: 16px;
}

.ts-hero__strip-band--white {
    background: #ffffff;
}

.ts-hero__strip-band--red {
    background: #ff120c;
}

.ts-hero__strip-band--cyan {
    background: #1daee4;
}

.ts-hero__strip-band--blue {
    background: #166096;
}

.ts-hero__strip-band--yellow {
    background: #fff200;
}

@media (min-width: 768px) {
    .ts-hero__content {
        padding-left: 64px;
    }

    .ts-hero__eyebrow {
        font-size: 32px;
    }

    .ts-hero__lead {
        font-size: 70px;
    }

    .ts-hero__typewriter {
        font-size: 100px;
    }
}

@media (min-width: 1024px) {
    .ts-hero__content {
        padding-left: 96px;
    }
}

@media (min-width: 1280px) {
    .ts-hero__content {
        padding-left: 112px;
    }
}

@media (max-width: 767px) {
    .ts-hero {
        min-height: 430px;
        padding: 34px 20px 0;
    }

    .ts-hero__eyebrow {
        margin-top: 34px;
    }

    .ts-hero__typewriter {
        min-height: 74px;
        font-size: 42px;
    }

    .ts-hero__actions {
        gap: 16px;
        margin-top: 28px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .ts-hero__eyebrow {
        font-size: 22px;
    }

    .ts-hero__lead {
        font-size: 38px;
    }

    .ts-hero__typewriter {
        font-size: 34px;
    }

    .ts-hero__button {
        width: 100%;
    }
}
