:root {
    --navy: #001b3a;
    --navy-2: #06284c;
    --blue: #0667f9;
    --blue-dark: #0053d6;
    --green: #10b981;
    --ink: #162b44;
    --muted: #65758a;
    --line: #dfe8f2;
    --soft: #f5f9ff;
    --white: #fff;
    --shadow-sm: 0 10px 30px rgba(0, 27, 58, .07);
    --shadow-lg: 0 24px 70px rgba(0, 54, 121, .14);
    --radius-sm: 16px;
    --radius: 24px;
    --radius-lg: 34px;
    --shell: 1180px;
    --section-space: 68px;
    --section-space-compact: 42px;
    --mascot-size: 410px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.shell {
    position: relative;
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: var(--section-space) 0;
    overflow: hidden;
}

.section--soft {
    background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.carriers,
.process,
.benefits,
.profiles2 {
    padding-block: var(--section-space-compact);
    background-color: white;
}

.eyebrow {
    margin-bottom: 15px;
    color: var(--green);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 52px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--wide {
    max-width: 900px;
}

.section-heading h2,
.integrations h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading>p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero {
    position: relative;
    min-height: auto;
    padding: 88px 0 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 12%, rgba(16, 185, 129, .10), transparent 28%),
        radial-gradient(circle at 6% 90%, rgba(6, 103, 249, .08), transparent 30%),
        #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(6, 103, 249, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(6, 103, 249, .025), 0 0 0 150px rgba(16, 185, 129, .018);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(560px, 1.15fr);
    align-items: center;
    gap: 34px;
}

.hero__copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 26px;
    font-size: clamp(3.3rem, 6.7vw, 5.8rem);
    font-weight: 800;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, var(--green), var(--blue));
    background-clip: text;
    -webkit-background-clip: text;
}

.hero__lead {
    max-width: 610px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 1.1rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button-row--center {
    justify-content: center;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(6, 103, 249, .26);
}

.button--primary:hover {
    background: var(--blue-dark);
}

.button--outline {
    color: var(--blue);
    border-color: var(--blue);
    background: #fff;
}

.button--outline:hover {
    box-shadow: var(--shadow-sm);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    padding: 0;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: .82rem;
    list-style: none;
}

.trust-list li::before {
    content: "✓";
    display: inline-grid;
    width: 19px;
    height: 19px;
    margin-right: 7px;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
    font-size: .68rem;
    font-weight: 800;
}

.hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: end;
    gap: 0;
}

.component-placeholder {
    min-height: 510px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 28px;
    border: 1px solid rgba(6, 103, 249, .15);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.component-placeholder::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;
    border: 1px dashed rgba(6, 103, 249, .18);
    border-radius: 25px;
}

.quote-reference {
    width: 100%;
    max-width: 537px;
    margin: 0 auto 16px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 27, 58, .12);
}

.component-placeholder__icon {
    width: 72px;
    height: 72px;
    display: grid;
    margin-bottom: 23px;
    place-items: center;
    color: var(--blue);
    background: #eaf2ff;
    border-radius: 22px;
}

.component-placeholder__icon svg,
.line-icon svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.component-placeholder__label,
.component-tag {
    display: inline-block;
    padding: 5px 11px;
    color: var(--green);
    background: #e9fbf4;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.component-placeholder h2 {
    margin: 15px 0 8px;
    font-size: 1.75rem;
}

.component-placeholder p {
    margin-bottom: 8px;
    color: var(--muted);
}

.component-placeholder code {
    color: var(--blue);
}

.component-placeholder small {
    color: #8a99aa;
}

.mascot {
    position: absolute;
    z-index: 2;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}

.mascot--runner {
    position: static;
    width: var(--mascot-size);
    max-width: none;
    height: auto;
    align-self: center;
    justify-self: center;
    margin: 0 -22px 8px -112px;
    transform: translateX(-45px);
}

.carriers {
    padding-top: 28px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.logo-card {
    min-height: 105px;
    display: grid;
    place-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: 0 7px 20px rgba(0, 27, 58, .04);
}

.logo-card img {
    width: 100%;
    max-width: 125px;
    max-height: 48px;
    object-fit: contain;
    filter: saturate(.8);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: steps;
}

.step-card {
    position: relative;
    min-height: 285px;
    padding: 31px 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 64px;
    right: -21px;
    width: 21px;
    border-top: 1px dashed #9fb6d0;
}

.step-card__number {
    float: right;
    color: #c8d7e8;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.line-icon {
    width: 58px;
    height: 58px;
    display: grid;
    margin-bottom: 36px;
    place-items: center;
    color: var(--blue);
    background: #edf4ff;
    border-radius: 17px;
}

.step-card h3 {
    margin-bottom: 11px;
    font-size: 1.25rem;
}

.step-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .93rem;
}

.benefits .section-heading {
    position: relative;
    z-index: 2;
}

.mascot--glasses {
    top: -66px;
    right: max(180px, calc((100vw - var(--shell))/2 + 160px));
    height: var(--mascot-size);
    opacity: .95;
}

.feature-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 215px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.feature-card--featured {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    border: 0;
    background: linear-gradient(145deg, var(--blue), #0045ac);
    box-shadow: 0 18px 45px rgba(6, 103, 249, .23);
}

.feature-card--featured h3,
.feature-card--featured p {
    color: #fff;
}

.feature-card--featured .line-icon {
    color: #fff;
    background: rgba(255, 255, 255, .14);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .92rem;
}

.feature-card__mark {
    display: block;
    margin-bottom: 36px;
    color: var(--green);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .13em;
}

.profiles2-placeholder {
    max-width: 970px;
    padding: 10px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #f7faff;
}

.fake-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 6px;
}

.fake-tab {
    padding: 11px 22px;
    color: var(--muted);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 700;
}

.fake-tab--active {
    color: var(--blue);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 27, 58, .08);
}

.profiles2-placeholder__body {
    min-height: 265px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 45px;
    border-radius: 23px;
    background: #fff;
    text-align: center;
}

.profiles2-placeholder__body h3 {
    max-width: 570px;
    margin: 19px 0 10px;
    font-size: 1.65rem;
}

.profiles2-placeholder__body p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
}

.integrations__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.integrations__lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.chips li {
    padding: 8px 13px;
    color: var(--navy-2);
    border: 1px solid #dce7f4;
    border-radius: 999px;
    background: #fff;
    font-size: .8rem;
    font-weight: 700;
}

.chips li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    background: var(--green);
    border-radius: 50%;
}

.code-card {
    overflow: hidden;
    color: #d7e8ff;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow-lg);
}

.code-card__top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 48px;
    padding: 0 19px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #052344;
}

.code-card__top span {
    width: 9px;
    height: 9px;
    background: #ff6b6b;
    border-radius: 50%;
}

.code-card__top span:nth-child(2) {
    background: #ffd166;
}

.code-card__top span:nth-child(3) {
    background: var(--green);
}

.code-card__top small {
    margin-left: auto;
    color: #829bb8;
}

.code-card pre {
    min-height: 390px;
    padding: 35px;
    margin: 0;
    overflow: auto;
    font: .9rem/1.8 Consolas, Monaco, monospace;
}

.code-comment {
    color: #7892b1;
}

.code-method {
    color: #5de2ae;
}

.code-key {
    color: #8cc5ff;
}

.code-value {
    color: #ffc986;
}

.code-number {
    color: #c6a7ff;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 20px;
}

.pricing2 .section-heading--center {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.pricing2 .shell {
    z-index: 2;
}

.pricing2 {
    background-color: white;
}

.mascot--support {
    top: -64px;
    right: max(60px, calc((100vw - var(--shell))/2 + 60px));
    height: var(--mascot-size);
    z-index: 1;
}

.price-card {
    position: relative;
    padding: 39px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.price-card--primary {
    border: 2px solid var(--blue);
    transform: translateY(-9px);
    box-shadow: 0 20px 50px rgba(6, 103, 249, .14);
}

.price-card__badge {
    position: absolute;
    top: 19px;
    right: 20px;
    padding: 5px 9px;
    color: var(--blue);
    background: #eaf2ff;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price-card__value {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -.06em;
}

.price-card__value--green {
    color: var(--green);
}

.price-card h3 {
    margin-bottom: 13px;
    font-size: 1.15rem;
}

.price-card>p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .91rem;
}

.final-cta {
    padding: 90px 0 64px;
    color: #fff;
    background: radial-gradient(circle at 20% 0%, #1284ff 0, transparent 35%), linear-gradient(135deg, #0066ed, #00377f);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, #000, transparent 80%);
}

.final-cta__inner {
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta__logo {
    width: 210px;
    height: 210px;
    margin: -42px auto -20px;
    object-fit: contain;
}

.final-cta h2 {
    margin-bottom: 19px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 32px;
    color: #d9ebff;
    font-size: 1.05rem;
}

.final-cta small {
    display: block;
    margin-top: 21px;
    color: #c7ddf6;
}

.button--light {
    color: var(--blue);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .16);
}

.button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .05);
}

.mascot--computer {
    right: max(-42px, calc((100vw - var(--shell))/2 - 130px));
    bottom: -10px;
    z-index: 1;
    height: var(--mascot-size);
    opacity: .78;
}

.testimonial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.testimonials {
    background-color: white;
}

.testimonial2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial2-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.stars {
    margin-bottom: 17px;
    color: #ffb525;
    letter-spacing: .15em;
}

.testimonial2-card blockquote {
    min-height: 105px;
    margin: 0 0 26px;
    color: var(--ink);
    font-size: 1rem;
}

.testimonial2-card footer {
    display: flex;
    align-items: center;
    gap: 13px;
}

.avatar {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--blue);
    background: #eaf2ff;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 800;
}

.testimonial2-card footer p {
    margin: 0;
    line-height: 1.35;
}

.testimonial2-card footer strong,
.testimonial2-card footer small {
    display: block;
}

.testimonial2-card footer small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .74rem;
}

@media (max-width: 1080px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .hero__visual {
        display: block;
    }

    .mascot--runner,
    .mascot--glasses,
    .mascot--support,
    .mascot--computer {
        display: none;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 820px) {
    :root {
        --section-space: 58px;
        --section-space-compact: 36px;
    }

    .section {
        padding: var(--section-space) 0;
    }

    .carriers,
    .process,
    .benefits,
    .profiles2 {
        padding-block: var(--section-space-compact);
    }

    .hero {
        min-height: auto;
        padding: 64px 0 26px;
    }

    .carriers {
        padding-top: 24px;
    }

    .hero__grid,
    .integrations__grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        gap: 55px;
    }

    .component-placeholder {
        min-height: 390px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card--featured {
        grid-row: auto;
    }

    .price-grid,
    .testimonial2-grid {
        grid-template-columns: 1fr;
    }

    .price-card--primary {
        transform: none;
    }

    .integrations__grid {
        gap: 45px;
    }
}

@media (max-width: 560px) {
    :root {
        --section-space: 48px;
        --section-space-compact: 30px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding: var(--section-space) 0;
    }

    .carriers,
    .process,
    .benefits,
    .profiles2 {
        padding-block: var(--section-space-compact);
    }

    .hero {
        padding: 52px 0 22px;
    }

    .carriers {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .button-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .trust-list {
        display: grid;
        gap: 10px;
    }

    .logo-grid,
    .steps,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .integrations h2 {
        font-size: 2rem;
    }

    .fake-tabs {
        flex-direction: column;
    }

    .fake-tab {
        text-align: center;
    }

    .profiles2-placeholder__body {
        min-height: 300px;
        padding: 35px 22px;
    }

    .code-card pre {
        padding: 24px 20px;
        font-size: .75rem;
    }

    .price-card,
    .testimonial2-card {
        padding: 27px 23px;
    }

    .final-cta {
        padding: 68px 0 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}