/* Influze Home Page — compiled from modular SCSS source. */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body, h1, h2, h3, p, figure, blockquote {
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


body {
    background: rgba(242, 241, 233, .9);
    color: #11110f;
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.container {
    width: min(calc(100% - 40px), 1280px);
    margin-inline: auto;
}

.section {
    padding-block: clamp(80px, 10vw, 150px);
}

.section--compact {
    padding-block: clamp(52px, 6vw, 86px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 999;
    transform: translateY(-150%);
    background: #dfff45;
    padding: 10px 14px;
    font-weight: 700;
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.skip-link:focus {
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1), background 300ms cubic-bezier(.2, .8, .2, 1), color 300ms cubic-bezier(.2, .8, .2, 1), border-color 300ms cubic-bezier(.2, .8, .2, 1);
}

.button:hover {
    transform: translateY(-3px);
}

.button:focus-visible {
    outline: 3px solid rgba(101, 83, 255, .35);
    outline-offset: 4px;
}

.button--accent {
    background: #dfff45;
    color: #11110f;
}

.button--accent:hover {
    background: #c9f52e;
}

.button--dark {
    background: #151515;
    color: #fff;
}

.button--dark:hover {
    background: #6553ff;
}

.button--text {
    padding-inline: 4px;
    border-radius: 0;
    border-bottom-color: currentColor;
    min-height: 42px;
}

.button--full {
    width: 100%;
}

.button--large {
    min-height: 64px;
    padding-inline: 32px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 6px;
}

.arrow-link span {
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.arrow-link:hover span {
    transform: translate(4px, -4px);
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6553ff;
}

.eyebrow--light {
    color: rgba(255, 255, 255, .78);
}

.eyebrow--light i {
    background: #dfff45;
}

.section-heading {
    margin-bottom: clamp(42px, 6vw, 80px);
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 9vw;
    align-items: end;
}

.section-heading h2, .why-us__intro h2, .faq__intro h2, .contact-cta h2 {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .97;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    max-width: 900px;
}

.section-heading p, .section-heading__aside p {
    max-width: 540px;
    color: #696961;
    font-size: 1.05rem;
}

.section-heading__aside {
    display: grid;
    gap: 24px;
    justify-items: start;
}

@media (max-width: 720px) {
    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding-block: 18px;
    transition: padding 300ms cubic-bezier(.2, .8, .2, 1), background-color 300ms cubic-bezier(.2, .8, .2, 1), box-shadow 300ms cubic-bezier(.2, .8, .2, 1);
}

.site-header.is-scrolled {
    padding-block: 10px;
    background: rgba(242, 241, 233, .9);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(17, 17, 15, .12);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 32px;
}

.site-logo {

}

.site-logo img {
    width: 5rem;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.site-nav a {
    position: relative;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #11110f;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: #11110f;
    transition: right 300ms cubic-bezier(.2, .8, .2, 1);
}

.site-nav a:hover::after, .site-nav a.is-active::after {
    right: 0;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #151515;
    padding: 12px;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1), opacity 300ms cubic-bezier(.2, .8, .2, 1);
}

@media (max-width: 1024px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .site-header__cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: -1;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        background: #dfff45;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 300ms cubic-bezier(.2, .8, .2, 1), visibility 300ms cubic-bezier(.2, .8, .2, 1), transform 300ms cubic-bezier(.2, .8, .2, 1);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-nav a {
        font-family: "Syne", "Manrope", Arial, sans-serif;
        font-size: clamp(2rem, 8vw, 4rem);
        text-transform: none;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}


.hero {
    position: relative;
    min-height: 920px;
    display: flex;
    align-items: center;
    padding-top: 150px;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    align-items: center;
    gap: 6vw;
}

.hero__content {
    position: relative;
    z-index: 3;
}

.availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 10px 16px;
    border: 1px solid rgba(17, 17, 15, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.availability-pill__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #46c875;
    box-shadow: 0 0 0 5px rgba(70, 200, 117, .14);
}

.hero__title {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .97;
    font-size: clamp(4rem, 7.2vw, 7.6rem);
    max-width: 900px;
}

.hero__socials {
    display: inline-flex;
    vertical-align: middle;
    margin: 0 .08em;
    transform: translateY(-.04em);
}

.social-chip {
    display: inline-grid;
    place-items: center;
    width: .62em;
    height: .62em;
    margin-left: -.08em;
    border: 3px solid #f2f1e9;
    border-radius: 50%;
    color: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: .34em;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.social-chip:first-child {
    margin-left: 0;
}

.social-chip--snap {
    background: #ffef1b;
    color: #11110f;
}

.social-chip--tiktok {
    background: #111;
}

.social-chip--instagram {
    background: linear-gradient(135deg, #8134af, #fd1d1d, #fcb045);
}

.social-chip--youtube {
    background: #ff1d1d;
}

.hero__copy {
    max-width: 590px;
    margin-top: 28px;
    color: #696961;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 42px;
    height: 42px;
    margin-left: -10px;
    border: 3px solid #f2f1e9;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.hero__proof strong, .hero__proof span {
    display: block;
}

.hero__proof strong {
    font-size: 1rem;
}

.hero__proof span {
    color: #696961;
    font-size: .78rem;
}

.hero-visual {
    position: relative;
    min-height: 650px;
}

.hero-visual__frame {
    position: absolute;
    inset: 30px 30px 30px 50px;
    overflow: hidden;
    border-radius: 48% 48% 28px 28px;
    background: #ddd;
    box-shadow: 0 40px 80px rgba(35, 25, 15, .18);
}

.hero-visual__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, .32));
}

.hero-visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
}

.creator-card {
    position: absolute;
    z-index: 4;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 12px;
    width: 245px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 16px;
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(15px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.creator-card img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.creator-card span, .creator-card strong {
    display: block;
}

.creator-card span {
    font-size: .76rem;
    color: #696961;
}

.creator-card strong {
    font-size: .86rem;
}

.creator-card__status {
    display: grid !important;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3598e8;
    color: #fff !important;
    font-weight: 800;
}

.creator-card--top {
    top: 28px;
    right: -30px;
}

.creator-card--bottom {
    left: -20px;
    bottom: 85px;
}

.floating-stat {
    position: absolute;
    right: 0;
    bottom: 22px;
    z-index: 4;
    min-width: 190px;
    padding: 18px;
    border-radius: 16px;
    background: #dfff45;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.floating-stat span, .floating-stat small {
    display: block;
}

.floating-stat span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
}

.floating-stat strong {
    display: block;
    margin: 2px 0;
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.floating-stat small {
    font-size: .72rem;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .48;
}

.hero__orb--one {
    width: 360px;
    height: 360px;
    left: -190px;
    bottom: 40px;
    background: #dfff45;
}

.hero__orb--two {
    width: 240px;
    height: 240px;
    right: -100px;
    top: 170px;
    background: #b3a8ff;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 850px;
    }

    .hero-visual {
        width: min(100%, 700px);
        margin-inline: auto;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 120px;
    }

    .hero__title {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .hero__socials {
        display: flex;
        width: max-content;
        margin: .12em 0;
    }

    .social-chip {
        width: 1.15em;
        height: 1.15em;
        font-size: .55em;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-visual__frame {
        inset: 20px 0 40px;
    }

    .creator-card {
        width: 205px;
        grid-template-columns: 42px 1fr auto;
    }

    .creator-card img {
        width: 42px;
        height: 42px;
    }

    .creator-card--top {
        right: -4px;
    }

    .creator-card--bottom {
        left: -4px;
        bottom: 52px;
    }

    .floating-stat {
        display: none;
    }
}


.marquee {
    overflow: hidden;
    background: #151515;
    color: #fff;
    transform: rotate(-1.2deg);
    margin-inline: -10px;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.marquee__group {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 22px 17px;
}

.marquee span {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.65rem);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee i {
    color: #dfff45;
    font-style: normal;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
    }
}


.about {
    background: #ffffff;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 8vw;
    align-items: center;
}

.about-collage {
    position: relative;
    min-height: 640px;
}

.about-collage figure {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
}

.about-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-collage__primary {
    inset: 0 18% 11% 0;
}

.about-collage__secondary {
    width: 46%;
    height: 52%;
    right: 0;
    bottom: 0;
    border: 8px solid #fff;
}

.about-collage__stamp {
    position: absolute;
    top: 30px;
    right: 3%;
    display: grid;
    place-items: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #dfff45;
}

.about-collage__stamp svg {
    position: absolute;
    inset: 9px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    animation: spin 20s linear infinite;
}

.about-collage__stamp text {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.45px;
}

.about-collage__stamp span {
    font-size: 2rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.about__lead {
    color: #696961;
    font-size: 1.15rem;
    max-width: 560px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 45px 0;
    border-top: 1px solid rgba(17, 17, 15, 0.16);
    border-left: 1px solid rgba(17, 17, 15, 0.16);
}

.metric {
    padding: 28px;
    border-right: 1px solid rgba(17, 17, 15, 0.16);
    border-bottom: 1px solid rgba(17, 17, 15, 0.16);
}

.metric strong, .metric > span {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.3rem);
    line-height: 1;
}

.metric p {
    margin-top: 12px;
    color: #696961;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
    }

    .about-collage {
        min-height: 620px;
    }
}

@media (max-width: 720px) {
    .about-collage {
        min-height: 440px;
    }

    .about-collage__primary {
        inset: 0 12% 12% 0;
    }

    .about-collage__secondary {
        width: 50%;
        height: 48%;
    }

    .about-collage__stamp {
        width: 100px;
        height: 100px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric {
        padding: 20px;
    }
}


.brand-strip {
    background: #151515;
    color: #fff;
}

.brand-strip__label {
    margin-bottom: 38px;
    color: rgba(255, 255, 255, .56);
    text-align: center;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.brand-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 42px;
}

.brand-strip__grid img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
    opacity: .68;
    transition: opacity 300ms cubic-bezier(.2, .8, .2, 1), transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.brand-strip__grid img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 720px) {
    .brand-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-strip__grid img:last-child {
        grid-column: 1 / -1;
        width: 45%;
        justify-self: center;
    }
}


.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background: #151515;
    isolation: isolate;
}

.service-card--tall {
    min-height: 620px;
    margin-top: -40px;
}

.service-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 25%, rgba(0, 0, 0, .86) 100%);
    z-index: 1;
    transition: background 300ms cubic-bezier(.2, .8, .2, 1);
}

.service-card__number {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    color: #11110f;
    font-size: .76rem;
    font-weight: 800;
}

.service-card__content {
    position: absolute;
    inset: auto 26px 26px;
    z-index: 2;
    transform: translateY(76px);
    transition: transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.service-card h3 {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.service-card p {
    margin-top: 16px;
    color: rgba(255, 255, 255, .78);
    opacity: 0;
    transition: opacity 300ms cubic-bezier(.2, .8, .2, 1);
}

.service-card ul {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 300ms cubic-bezier(.2, .8, .2, 1);
}

.service-card li {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.service-card > a {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dfff45;
    color: #11110f;
    font-size: 1.2rem;
    transform: rotate(0);
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.service-card:hover > img {
    transform: scale(1.06);
}

.service-card:hover .service-card__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .92));
}

.service-card:hover .service-card__content {
    transform: none;
}

.service-card:hover p, .service-card:hover ul {
    opacity: 1;
}

.service-card:hover > a {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card--tall {
        margin-top: 0;
    }

    .service-card:last-child {
        grid-column: 1 / -1;
        min-height: 520px;
    }
}

@media (max-width: 720px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card, .service-card--tall {
        min-height: 510px;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-card__content {
        transform: none;
    }

    .service-card p, .service-card ul {
        opacity: 1;
    }
}


.why-us {
    background: #151515;
    color: #fff;
}

.why-us__intro {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 7vw;
    align-items: end;
    margin-bottom: 76px;
}

.why-us__intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -28px;
}

.why-us__intro p {
    max-width: 500px;
    color: rgba(255, 255, 255, .58);
    font-size: 1.05rem;
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 7vw;
    align-items: center;
}

.feature-list {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.feature-row {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    gap: 24px;
    align-items: center;
    padding-block: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.feature-row > span {
    color: #dfff45;
    font-size: .74rem;
    font-weight: 800;
}

.feature-row h3 {
    margin-bottom: 8px;
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    letter-spacing: -.035em;
}

.feature-row p {
    color: rgba(255, 255, 255, .58);
}

.feature-row > a {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    transition: background 300ms cubic-bezier(.2, .8, .2, 1), color 300ms cubic-bezier(.2, .8, .2, 1), transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.feature-row:hover > a {
    background: #dfff45;
    color: #11110f;
    transform: rotate(45deg);
}

.connection-card {
    padding: 16px;
    border-radius: 26px;
    background: #fff;
    color: #11110f;
    transform: rotate(2deg);
}

.connection-card__image {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
}

.connection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connection-card__badge {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #dfff45;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.connection-card__profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 4px;
}

.connection-card__profile span, .connection-card__profile small {
    display: block;
}

.connection-card__profile span {
    font-weight: 800;
}

.connection-card__profile small {
    color: #696961;
}

.connection-card__profile strong {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: 1.8rem;
}

.connection-card__message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(17, 17, 15, 0.16);
    border-radius: 999px;
    color: #696961;
}

.connection-card__message button {
    border: 0;
    background: none;
}

@media (max-width: 1024px) {
    .why-us__intro, .why-us__grid {
        grid-template-columns: 1fr;
    }

    .why-us__intro .eyebrow {
        margin-bottom: 0;
    }

    .connection-card {
        max-width: 520px;
        margin-inline: auto;
    }
}

@media (max-width: 720px) {
    .feature-row {
        grid-template-columns: 34px 1fr 44px;
        gap: 12px;
    }

    .connection-card__image {
        height: 300px;
    }
}


.success {
    background: #dfff45;
}

.rating-summary {
    display: grid;
    justify-items: start;
}

.rating-summary strong {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: 2.2rem;
}

.rating-summary span {
    letter-spacing: .15em;
}

.rating-summary small {
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.testimonial-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.testimonial-track {
    min-height: 400px;
}

.testimonial {
    display: none;
    position: relative;
    min-height: 400px;
    padding: clamp(34px, 6vw, 74px);
    border-radius: 30px;
    background: #ffffff;
}

.testimonial.is-active {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    animation: testimonialIn 450ms ease;
}

@keyframes testimonialIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
}

.testimonial blockquote {
    grid-column: 1 / -1;
    max-width: 980px;
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.12;
    letter-spacing: -.045em;
}

.testimonial__person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial__person img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__person strong, .testimonial__person span {
    display: block;
}

.testimonial__person span {
    color: #696961;
    font-size: .82rem;
}

.testimonial__score {
    text-align: right;
}

.testimonial__score strong, .testimonial__score span {
    display: block;
}

.testimonial__score strong {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: 2rem;
}

.testimonial__score span {
    font-size: .78rem;
    letter-spacing: .12em;
}

.slider-button {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid #11110f;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 300ms cubic-bezier(.2, .8, .2, 1), color 300ms cubic-bezier(.2, .8, .2, 1);
}

.slider-button:hover {
    background: #11110f;
    color: #fff;
}

@media (max-width: 720px) {
    .testimonial-shell {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-track {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 480px;
    }

    .slider-button--prev {
        justify-self: end;
    }

    .slider-button--next {
        justify-self: start;
    }

    .testimonial.is-active {
        grid-template-columns: 1fr;
    }

    .testimonial__score {
        text-align: left;
    }
}


.faq {
    background: #ffffff;
}

.faq__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 9vw;
    align-items: start;
}

.faq__intro {
    position: sticky;
    top: 130px;
}

.faq__intro p {
    margin: 24px 0 32px;
    max-width: 440px;
    color: #696961;
}

.accordion {
    border-top: 1px solid rgba(17, 17, 15, 0.16);
}

.accordion-item {
    border-bottom: 1px solid rgba(17, 17, 15, 0.16);
}

.accordion-item__trigger {
    display: grid;
    grid-template-columns: 1fr 32px;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 28px 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.accordion-item__trigger span {
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: clamp(1.2rem, 2.3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -.025em;
}

.accordion-item__trigger i {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(17, 17, 15, 0.16);
    border-radius: 50%;
}

.accordion-item__trigger i::before, .accordion-item__trigger i::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: calc(50% - 1px);
    height: 2px;
    background: currentColor;
    transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.accordion-item__trigger i::after {
    transform: rotate(90deg);
}

.accordion-item.is-open .accordion-item__trigger i {
    background: #dfff45;
}

.accordion-item.is-open .accordion-item__trigger i::after {
    transform: rotate(0);
}

.accordion-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 400ms ease;
}

.accordion-item__panel p {
    overflow: hidden;
    color: #696961;
}

.accordion-item.is-open .accordion-item__panel {
    grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-item__panel p {
    padding-bottom: 30px;
}

@media (max-width: 1024px) {
    .faq__grid {
        grid-template-columns: 1fr;
    }

    .faq__intro {
        position: static;
    }
}


.insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1.15;
    overflow: hidden;
    border-radius: 22px;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.2, .8, .2, 1);
}

.article-card__image span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #dfff45;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.article-card:hover .article-card__image img {
    transform: scale(1.05);
}

.article-card__meta {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    color: #696961;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.article-card h3 {
    margin: 14px 0 12px;
    font-family: "Syne", "Manrope", Arial, sans-serif;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    line-height: 1.16;
    letter-spacing: -.035em;
}

.article-card p {
    margin-bottom: 20px;
    color: #696961;
}

@media (max-width: 1024px) {
    .insights__grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-card:last-child {
        grid-column: 1 / -1;
        max-width: 620px;
    }
}

@media (max-width: 720px) {
    .insights__grid {
        grid-template-columns: 1fr;
    }

    .article-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}


.contact-cta {
    background: #6553ff;
    color: #fff;
}

.contact-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.contact-cta h2 {
    max-width: 920px;
}

@media (max-width: 1024px) {
    .contact-cta__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }
}


.site-footer {
    padding: 80px 0 28px;
    background: #151515;
    color: #fff;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 7vw;
    align-items: start;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.site-logo--footer img {
    /*filter: brightness(0) invert(1);*/
}

.site-footer__top p {
    max-width: 420px;
    color: rgba(255, 255, 255, .57);
}

.site-footer__socials {
    display: flex;
    gap: 10px;
}

.site-footer__socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    transition: background 300ms cubic-bezier(.2, .8, .2, 1), color 300ms cubic-bezier(.2, .8, .2, 1);
}

.site-footer__socials a:hover {
    background: #dfff45;
    color: #11110f;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-block: 55px;
}

.site-footer__grid > div {
    display: grid;
    justify-items: start;
    gap: 10px;
}

.site-footer__grid span {
    margin-bottom: 10px;
    color: #dfff45;
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.site-footer__grid a {
    color: rgba(255, 255, 255, .7);
    transition: color 300ms cubic-bezier(.2, .8, .2, 1);
}

.site-footer__grid a:hover {
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .42);
    font-size: .74rem;
}

@media (max-width: 720px) {
    .site-footer__top, .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}
