html,
body {
    overflow: visible;
}

#market_hero {
    background-color: #021D3D;
    padding: 40px 120px 0px;
    position: relative;
    z-index: 10;
}

.os-mac.browser-chrome #market_hero {
    background-color: #021f46;
}

html.os-mac.browser-safari #market_hero {
    background-color: #022047;
}

.market_hero_wrapper {
    display: grid;
    grid-template-columns: 690px minmax(0, 800px);
    justify-content: space-between;
    gap: 0 60px;
    overflow: hidden;
}

.market_hero_anim {
    grid-row: 1 / 4;
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market_hero_anim video {
    max-height: 670px;
    height: 100%;
}

.market_hero_title {
    grid-row: 1;
    grid-column: 1;
    margin-top: 80px;
    font-size: 60px;
    line-height: 1.1em;
    color: #FFFFFF;
    max-width: 690px;
}

.market_hero_txt {
    grid-row: 2;
    grid-column: 1;
    max-width: 690px;
    font-size: 22px;
    line-height: 1.4em;
    color: #B9C0D4;
    margin-top: -110px;
}

.market_hero_btns {
    grid-row: 3;
    grid-column: 1;
    display: flex;
    gap: 14px;
    z-index: 2;
}

.market_hero_btn {
    display: flex;
    align-items: center;
    background-color: var(--say9-secondary-blue);
    border-radius: 200px;
    padding: 10px 10px 10px 20px;
    gap: 18px;
    height: 52px;
    margin-top: -64px;
}

.market_hero_btn span {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    padding-top: 4px;
}

.market_hero_btn img {
    width: 32px;
    height: 32px;
}

.market_hero_btn_secondary {
    border: 2px solid #FFFFFF;
    background-color: transparent;
    padding: 13px 20px;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

html.os-ios .market_hero_btn_secondary {
    transition: none;
}

.market_hero_btn_secondary span {
    transition: color 0.3s ease-in-out;
}

html.os-ios .market_hero_btn_secondary span {
    transition: none;
}

.market_hero_btn_secondary:hover {
    background-color: #FFFFFF;
}

.market_hero_btn_secondary:hover span {
    color: var(--say9-primary-blue);
}

.market_hero_btn_secondary:active {
    padding: 11px 8px;
}

/* How the Marketplace Works */

#market_how {
    background-color: #FFFFFF;
    padding: 80px 100px 96px;
    border-radius: 60px;
    position: relative;
    z-index: 2;
}

#market_how_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.benefits_cta {
    margin-top: 0px;
}

#how_right {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.how_image {
    width: 100%;
    max-width: 947px;
    height: auto;
    padding: 14px;
    background-color: #E5F1FF;
    border-radius: 30px;
}

#how_left {
    position: sticky;
    top: 155px;
}

#how_left_inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pill {
    padding: 6px 14px;
    border-radius: 200px;
    background-color: var(--Main-Blue-800);
    color: var(--White);
    font-size: 18px;
    line-height: 1.1em;
    font-weight: 600;
}

.pill.white {
    background-color: var(--White);
    color: var(--say9-primary-blue);
}

#how_left .pill {
    margin-bottom: 26px;
}

#how_left h2 {
    font-size: 60px;
    line-height: 1.08em;
    font-weight: 700;
    color: var(--say9-primary-blue);
    margin-bottom: 26px;
    max-width: 560px;
}

#how_left h3 {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.18em;
    margin-bottom: 14px;
    color: var(--say9-primary-blue);
}

#how_left p {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--say9-primary-blue);
}

#how_left p:not(:last-child) {
    margin-bottom: 48px;
}

/* AI Visibility */

#ai_visibility {
    padding: 80px 140px;
}

#ai_visibility_inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

#ai_left {
    flex: 1;
    min-width: 0;
}

#ai_visibility .pill {
    margin-bottom: 12px;
    width: max-content;
}

#ai_visibility h2 {
    font-size: 60px;
    line-height: 1.15;
    font-weight: bold;
    color: var(--White);
    margin-bottom: 20px;
}

.ai_subtitle {
    font-size: 20px;
    line-height: 1.6em;
    color: var(--White);
    opacity: 0.7;
    margin-bottom: 36px;
}

#ai_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ai_list_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai_list_item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai_list_icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--say9-secondary-blue);
}

.ai_list_text h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--White);
    margin-bottom: 4px;
    line-height: 1.3;
}

.ai_list_text p {
    font-size: 16px;
    line-height: 1.5em;
    color: var(--White);
    opacity: 0.6;
}

#ai_right {
    flex-shrink: 0;
    width: 480px;
}

/* Stand Out */

#stand_out {
    padding: 80px 140px;
}

#stand_out_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#stand_out .pill {
    margin-bottom: 12px;
}

#stand_out h2 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--White);
    text-align: center;
    margin-bottom: 48px;
}

#stand_out_blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.stand_out_block {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    transition: transform 0.2s ease;
}

.stand_out_block:hover {
    transform: translateY(-5px);
}

.so_icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.stand_out_block h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 12px;
}

.stand_out_block p {
    font-size: 18px;
    line-height: 1.55em;
    opacity: 0.85;
}

.so_domains {
    background-color: var(--Main-Blue-800);
    color: #fff;
}

.so_domains .so_icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.so_filtering {
    background-color: #CBE389;
    color: #30374F;
}

.so_filtering .so_icon {
    background-color: rgba(0, 0, 0, 0.08);
    color: #30374F;
}

.so_content {
    background-color: #C6E1FF;
    color: #1F1E1E;
}

.so_content .so_icon {
    background-color: rgba(0, 0, 0, 0.08);
    color: #1F1E1E;
}

.so_fast {
    background-color: #F6F7FC;
    color: #30374F;
}

.so_fast .so_icon {
    background-color: rgba(0, 0, 0, 0.06);
    color: #30374F;
}

.so_support {
    background-color: #1F1E1E;
    color: #fff;
}

.so_support .so_icon {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.so_cta {
    background-color: var(--say9-secondary-blue);
    color: #fff;
    justify-content: space-evenly;
    position: relative;
    z-index: 2;
}

.so_cta h3 {
    color: #fff;
}

.so_cta p {
    opacity: 0.85;
    max-width: 250px;
    margin-top: -20px;
    font-size: 12px !important;
    margin-left: 26px;
}

.so_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: var(--say9-secondary-blue);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 200px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    width: max-content;
}

.so_ninty {
    position: absolute;
    width: 230px;
    height: auto;
    bottom: -90px;
    right: 0;
}

@media screen and (max-width: 1740px) {
    .so_ninty {
        width: 180px;
        bottom: -70px;
        right: -40px;
    }
}

@media screen and (max-width: 1500px) {
    .so_cta {
        justify-content: flex-start;
    }

    .so_cta p {
        margin-top: 4px;
    }
}

@media screen and (max-width: 1320px) {
    .so_cta h3 {
        margin-bottom: 8px;
    }

    .so_ninty {
        width: 150px;
        bottom: -70px;
        right: 0px;
    }
}

.so_cta_btn:hover {
    opacity: 0.9;
}

.so_cta_btn svg {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 1680px) {
    .market_hero_txt {
        max-width: 660px;
        font-size: 20px;
    }

    .market_hero_anim video {
        max-height: 620px;
    }
}

@media screen and (max-width: 1580px) {
    .market_hero_anim {
        width: 120%;
        left: -20%;
        position: relative;
    }

    .market_hero_title,
    .market_hero_txt {
        z-index: 2;
    }
}

#ai_right .work_slide .viewport {
    max-width: 100%;
}

#ai_right .work_slide .chart_container {
    max-width: 100%;
}

@media screen and (max-width: 1500px) {

    .market_hero_title {
        font-size: 52px;
        max-width: 610px;
    }

    .market_hero_txt {
        max-width: 610px;
        margin-top: -100px;
    }

    .market_hero_anim {
        width: 140%;
        left: -30%;
    }

    .market_hero_anim video {
        max-height: 580px;
    }

    #how_left h2 {
        font-size: 60px;
    }

    #how_left h3 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    #how_right {
        gap: 40px;
    }

    #how_left p:not(:last-child) {
        margin-bottom: 32px;
    }

    .how_image {
        max-width: 760px;
    }
}

@media screen and (max-width: 1455px) {
    .market_hero_anim {
        width: 180%;
        left: -58%;
        height: 540px;
        align-items: flex-end;
    }

    .market_hero_anim video {
        max-height: 490px;
    }
}

@media screen and (max-width: 1345px) {
    .market_hero_anim {
        left: -65%;
    }
}

@media screen and (max-width: 1320px) {
    #market_hero {
        padding: 24px 80px 0px;
    }

    section:not(#clients_feedback) {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .market_hero_title {
        font-size: 48px;
        max-width: 610px;
    }

    .market_hero_txt {
        max-width: 560px;
    }

    #how_left h2,
    #stand_out h2,
    #ai_visibility h2 {
        font-size: 60px;
    }

    .stand_out_block {
        padding: 28px 24px;
    }

    .stand_out_block h3 {
        font-size: 22px;
    }

    .stand_out_block p {
        font-size: 16px;
    }

    #ai_visibility h2 {
        font-size: 48px;
    }

    .ai_subtitle {
        font-size: 18px;
    }
}

@media screen and (max-width: 1240px) {
    .market_hero_anim {
        left: -90%;
        width: 200%;
    }
}

@media screen and (max-width: 1180px) {
    .market_hero_anim {
        left: -130%;
        width: 220%;
    }

    .market_hero_anim {
        height: 490px;
    }

    .market_hero_anim video {
        max-height: 450px;
    }

    .market_hero_txt {
        max-width: 390px;
        font-size: 18px;
        margin-top: -90px;
    }

    .market_hero_title {
        font-size: 40px;
        max-width: 510px;
    }
}

@media screen and (max-width: 1100px) {
    .market_hero_wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px 60px;
    }

    .market_hero_anim {
        left: 0%;
        width: 100%;
        height: auto;
        max-width: 500px;
        order: 4;
        align-self: center;
    }

    .market_hero_anim video {
        max-height: none;
        width: 100%;
        height: auto;
    }

    .market_hero_title {
        order: 1;
        max-width: none;
        margin-top: 12px;
        font-size: min(50px, 7.5vw);
    }

    .market_hero_txt {
        order: 2;
        max-width: 100%;
        text-align: left;
        margin-top: 0;

    }

    .market_hero_btns {
        order: 3;
    }

    .market_hero_btn {
        margin-top: 0;
    }

    #market_how_inner {
        flex-direction: column;
        gap: 40px;
    }

    #how_left {
        position: relative;
        top: 0;
        width: 100%;
    }

    #how_right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 24px;
    }

    .how_image {
        max-width: 400px;
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    section:not(#clients_feedback) {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    #stand_out_blocks {
        grid-template-columns: repeat(2, 1fr);
    }

    .stand_out_block h3 {
        font-size: 24px;
    }

    .stand_out_block p {
        font-size: 16px;
    }

    #how_left h2,
    #stand_out h2,
    #ai_visibility h2 {
        font-size: 40px;
        margin-bottom: 24px;
    }

    #ai_visibility_inner {
        flex-direction: column;
    }

    #ai_visibility h2 {
        margin-bottom: 16px;
    }

    .ai_subtitle {
        font-size: 18px;
    }

    #ai_right {
        width: 100%;
        max-width: 500px;
        align-self: center;
    }

    #market_how {
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    #clients_feedback {
        border-radius: 0 0 24px 24px;
        margin-top: -60px;
    }
}

@media screen and (max-width: 650px) {
    section:not(#clients_feedback) {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    #stand_out_blocks {
        grid-template-columns: 1fr;
    }

    #stand_out {
        padding-bottom: 0px;
    }

    .market_hero_title {
        margin-top: 24px;
    }

    .market_hero_btn {
        gap: 8px;
    }

    .market_hero_btn span {
        font-size: 18px;
    }

    #how_left h3 {
        font-size: 24px;
    }

    #how_left p {
        font-size: 18px;
    }

    #market_how {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 460px) {
    .so_cta {
        padding-bottom: 160px;
        justify-content: flex-start;
        align-items: center;
    }

    .so_cta h3 {
        text-align: center;
    }

    .so_cta_btn {
        padding: 6px 20px;
    }

    .so_cta a span {
        line-height: 25px;
    }

    .so_cta p {
        margin-left: 0;
    }

    .so_ninty {
        width: 170px;
        bottom: -90px;
        right: 50%;
        transform: translateX(50%);
    }
}