.full-inum-brief.home-proof {
    position: relative;
    overflow: hidden;
    background: #f3f5f4;
    color: #17222c;
}

.full-inum-brief.home-proof::before,
.full-inum-brief.home-proof::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.full-inum-brief.home-proof::before {
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: #dfe4e1;
}

.full-inum-brief.home-proof::after {
    display: none;
}

.home-proof-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 1.18fr);
    gap: 7%;
    align-items: center;
    box-sizing: border-box;
    padding-top: 112px;
    padding-bottom: 112px;
}

.home-proof-copy {
    min-width: 0;
}

.home-proof-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 25px;
    color: #f06452;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-proof-eyebrow::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.home-proof-copy h2 {
    margin: 0;
    color: #111b24;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: 0;
}

.home-proof-lead {
    max-width: 560px;
    margin: 28px 0 0;
    color: #66727d;
    font-size: 17px;
    line-height: 1.9;
}

.home-proof-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    margin: 42px 0 0;
}

.home-proof-stat {
    min-width: 0;
    padding: 20px 0 18px;
    border-top: 1px solid #d9dfdc;
}

.home-proof-stat dt {
    display: flex;
    align-items: baseline;
    min-height: 50px;
    margin: 0;
    color: #15212b;
    line-height: 1;
}

.home-proof-stat strong {
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 42px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.home-proof-stat em {
    margin-left: 4px;
    color: #f06452;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
}

.home-proof-stat dd {
    margin: 9px 0 0;
    color: #6a7580;
    font-size: 14px;
    line-height: 1.55;
}

.home-proof-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    margin-top: 28px;
    padding: 0;
    color: #15212b;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 240ms ease;
}

.home-proof-link span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #17222c;
    box-shadow: 0 10px 24px rgba(23, 34, 44, .16);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transition: transform 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

.home-proof-link:hover,
.home-proof-link:focus-visible {
    color: #f06452;
}

.home-proof-link:hover span,
.home-proof-link:focus-visible span {
    transform: translate(3px, -3px);
    background: #f06452;
    box-shadow: 0 14px 28px rgba(240, 100, 82, .26);
}

.home-proof-showcase {
    min-width: 0;
}

.home-proof-stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid #d7ddda;
    border-radius: 8px;
    background: #e8ecea;
    box-shadow: 0 28px 70px rgba(29, 42, 52, 0.14);
}

.home-proof-stage-bar {
    position: absolute;
    z-index: 6;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(211, 218, 215, 0.86);
    background: rgba(250, 251, 250, 0.94);
    color: #7d878e;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 11px;
    line-height: 1;
}

.home-proof-stage-bar i {
    width: 7px;
    height: 7px;
    margin-right: 6px;
    border-radius: 50%;
    background: #c9cfcc;
}

.home-proof-stage-bar i:first-child {
    background: #f47663;
}

.home-proof-stage-bar i:nth-child(2) {
    background: #e4bd65;
}

.home-proof-stage-bar i:nth-child(3) {
    background: #75bf92;
}

.home-proof-stage-bar span {
    margin-left: 10px;
}

.home-proof-slide {
    position: absolute;
    z-index: 1;
    inset: 40px 0 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 720ms cubic-bezier(.22,.61,.36,1), transform 920ms cubic-bezier(.16,1,.3,1), filter 720ms ease;
}

.home-proof-slide:nth-of-type(1) {
    transform: translate3d(-5%, 2%, 0) scale(.975);
}

.home-proof-slide:nth-of-type(2) {
    transform: translate3d(0, 7%, 0) scale(.96);
}

.home-proof-slide:nth-of-type(3) {
    transform: translate3d(5%, 0, 0) scale(1.025);
}

.home-proof-slide.is-active {
    z-index: 2;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
}

.home-proof-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6800ms cubic-bezier(.2,.6,.2,1);
}

.home-proof-slide.is-active img {
    transform: scale(1.045);
}

.home-proof-slide:nth-of-type(2) img {
    object-position: center;
}

.home-proof-caption {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "index title" "index copy";
    column-gap: 18px;
    align-items: center;
    min-height: 72px;
    box-sizing: border-box;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 6px;
    background: rgba(15, 25, 34, 0.78);
    color: #fff;
    backdrop-filter: blur(14px);
    transform: translateY(18px);
    opacity: 0;
    transition: transform 620ms 160ms cubic-bezier(.16,1,.3,1), opacity 520ms 160ms ease;
}

.home-proof-slide.is-active .home-proof-caption {
    transform: translateY(0);
    opacity: 1;
}

.home-proof-caption span {
    grid-area: index;
    color: #ff8b78;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.home-proof-caption strong {
    grid-area: title;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.home-proof-caption small {
    grid-area: copy;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.45;
}

.home-proof-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 1px solid #d7ddda;
    border-bottom: 1px solid #d7ddda;
    border-left: 1px solid #d7ddda;
    background: #fff;
}

.home-proof-tab {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    align-items: center;
    min-width: 0;
    min-height: 76px;
    padding: 0 18px;
    border: 0;
    border-right: 1px solid #e1e5e3;
    background: transparent;
    color: #727d85;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color 260ms ease, background-color 260ms ease;
}

.home-proof-tab:last-child {
    border-right: 0;
}

.home-proof-tab::after {
    position: absolute;
    right: 18px;
    bottom: -1px;
    left: 18px;
    height: 2px;
    background: #f06452;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 360ms cubic-bezier(.16,1,.3,1);
}

.home-proof-tab span {
    color: #a2aaaf;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.home-proof-tab b {
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-proof-tab:hover,
.home-proof-tab:focus-visible,
.home-proof-tab.is-active {
    background: #f8f9f8;
    color: #17222c;
}

.home-proof-tab.is-active::after {
    transform: scaleX(1);
}

.home-proof-tab:focus-visible,
.home-proof-link:focus-visible {
    outline: 2px solid #f06452;
    outline-offset: 3px;
}

@media (max-width: 1400px) {
    .home-proof-shell {
        grid-template-columns: minmax(350px, .82fr) minmax(510px, 1.18fr);
        gap: 5%;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .home-proof-copy h2 {
        font-size: 48px;
    }

    .home-proof-lead {
        font-size: 16px;
    }

    .home-proof-stat strong {
        font-size: 38px;
    }
}

@media (max-width: 980px) {
    .home-proof-shell {
        grid-template-columns: 1fr;
        gap: 52px;
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .home-proof-copy {
        max-width: none;
    }

    .home-proof-lead {
        max-width: 700px;
    }
}

@media (max-width: 640px) {
    .home-proof-shell {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box;
        gap: 38px;
        padding: 62px clamp(20px, 4.8vw, 28px) !important;
    }

    .home-proof-eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .home-proof-copy h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .home-proof-lead {
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.75;
    }

    .home-proof-stats {
        gap: 0 20px;
        margin-top: 30px;
    }

    .home-proof-stat {
        padding: 16px 0;
    }

    .home-proof-stat strong {
        font-size: 32px;
    }

    .home-proof-stat dd {
        font-size: 12px;
    }

    .home-proof-link {
        margin-top: 20px;
    }

    .home-proof-stage {
        aspect-ratio: 4 / 3;
    }

    .home-proof-stage-bar {
        height: 34px;
        padding: 0 12px;
    }

    .home-proof-slide {
        inset: 34px 0 0;
    }

    .home-proof-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 62px;
        padding: 11px 12px;
    }

    .home-proof-caption strong {
        font-size: 15px;
    }

    .home-proof-caption small {
        display: none;
    }

    .home-proof-tab {
        display: flex;
        justify-content: center;
        min-height: 56px;
        padding: 0 8px;
        text-align: center;
    }

    .home-proof-tab span {
        display: none;
    }

    .home-proof-tab b {
        font-size: 12px;
    }

    .home-proof-tab::after {
        right: 10px;
        left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-proof-slide,
    .home-proof-slide img,
    .home-proof-caption,
    .home-proof-tab::after,
    .home-proof-link span {
        transition-duration: 1ms !important;
    }

    .home-proof-slide.is-active img {
        transform: none;
    }
}
