.hero {
    position: relative;
    height: 974px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__gradient {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.09) 2.5%, transparent 3.5%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
}

.hero__content {
    max-width: 1240px;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
}

.hero__chip {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    padding: 0 18px 0 30px;
    background: #e5dfff;
    border: 1px solid #93baff;
    border-radius: 100px;
    backdrop-filter: blur(3px);
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    white-space: nowrap;
    height: 53.5px;
}

.hero__chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #258bff;
    box-shadow: 0 0 8px #258bff;
    flex-shrink: 0;
}

.hero__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 22px;
}

.hero__title-line {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 133%;
    letter-spacing: -1.68px;
    color: #111110;
}

.hero__title-line--blue {
    font-size: 84px;
    line-height: 100%;
    color: #258bff;
    position: relative;
    width: fit-content;
}

.hero__subtitle {
    max-width: 500px;
    padding-top: 26px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #1d1d1d;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-top: 38px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 54.5px;
    padding: 0 26px;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
    white-space: nowrap;
}

.hero__btn--primary {
    background: #258bff;
    border: 1px solid #258bff;
    color: #fff;
}

.hero__btn--primary:hover {
    background: #1a7aeb;
}

.hero__btn--primary:active {
    transform: scale(0.97);
}

.hero__btn-arrow {
    margin-left: 4px;
}

.hero__btn--outline {
    background: transparent;
    border: 1px solid rgba(2, 2, 2, 0.4);
    color: #000;
}

.hero__btn--outline:hover {
    border-color: #000;
}

.hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero__scroll-text {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 10.5px;
    line-height: 1.5;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    color: #a9a89f;
    white-space: nowrap;
}

.hero__scroll-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, rgba(37, 139, 255, 0.5), rgba(37, 139, 255, 0));
}

.hero__bg-picture {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.hero__highlight {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 20px;
}

.hero__bg-img {
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
    max-width: unset;
    z-index: -1;
}

@media (max-width: 1280px) {
    .hero {
        height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero__title-line {
        font-size: 44px;
    }

    .hero__title-line--blue {
        font-size: 60px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 400px;
    }

    .hero__bg-picture {
        height: 400px;
        margin-top: 100px;
    }

    .hero__chip {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .hero__title {
        padding: 0;
        margin: 10px 0;
    }

    .hero__title-line {
        font-size: 24px;
        letter-spacing: -0.56px;
    }
    
    .hero__bg-picture {
        margin-top: 0px;
    }

    .hero__title-line--blue {
        font-size: 34px;
    }

    .hero__chips {
        height: auto;
        padding-top: 10px;
        gap: 8px;
    }

    .hero__chip {
        font-size: 11px;
        padding: 0 12px 0 20px;
        height: 36px;
    }

    .hero__subtitle {
        font-size: 15px;
        padding-top: 10px;
        max-width: 100%;
    }

    .hero__actions {
        padding-top: 24px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero__btn {
        height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }

    .hero__scroll {
        display: none;
    }

    .hero__bg-img {
        position: initial;
        object-fit: contain;
        width: 100%;
        height: auto;
    }

    .hero__bg-picture {
        height: auto;
        max-height: 300px;
    }

    .hero__inner {
        flex-direction: column-reverse;
    }
}

@media (max-width: 580px) {
    .hero__bg-picture {
        height: auto;
        max-height: 200px;
    }
}
