@font-face {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/lexend-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Lexend";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/lexend-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --navy: #1a2a4c;
    --navy-deep: #12203c;
    --navy-soft: #2c3f66;
    --blue: #0257e8;
    --blue-mid: #109bf1;
    --cyan: #36dafd;
    --ink: #1a2a4c;
    --body: #55637d;
    --muted: #7b88a0;
    --line: #e2e8f2;
    --tint: #f4f7fc;
    --white: #ffffff;
    --grad: linear-gradient(120deg, var(--blue) 0%, var(--blue-mid) 55%, var(--cyan) 100%);
    --shadow: 0 1px 2px rgba(26, 42, 76, .05), 0 12px 32px rgba(26, 42, 76, .07);
    --radius: 14px;
    --wrap: 1140px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--body);
    font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.18;
    margin: 0 0 .6em;
}

h1 {
    font-size: clamp(2.05rem, 4.6vw, 3.25rem);
    letter-spacing: -.03em;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
}

h3 {
    font-size: 1.14rem;
    letter-spacing: -.01em;
}

p {
    margin: 0 0 1.1em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--blue-mid);
}

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

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 3px;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 50;
    background: var(--navy);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    font-size: .92rem;
}

.skip:focus {
    left: 0;
    color: var(--white);
}

.site-head {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}

.head-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 76px;
}

.brand {
    flex: 0 0 auto;
    line-height: 0;
}

.brand img {
    width: auto;
    height: 30px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav a {
    color: var(--navy-soft);
    font-size: .95rem;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.nav a:hover {
    color: var(--ink);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.lang {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
    background: var(--white);
}

.lang span,
.lang a {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 5px 12px;
    border-radius: 999px;
}

.lang-on {
    background: var(--navy);
    color: var(--white);
}

.lang a {
    color: var(--muted);
}

.lang a:hover {
    color: var(--ink);
    background: var(--tint);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
}

.kicker::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--grad);
}

.kicker-light {
    color: var(--cyan);
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f7fafe 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
}

.hero-track {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: repeat(10, 1fr);
}

.hero-track i {
    display: block;
}

.hero-glow {
    position: absolute;
    left: 87%;
    top: 10%;
    width: 720px;
    height: 720px;
    margin: -360px 0 0 -360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(54, 218, 253, .26) 0%, rgba(2, 87, 232, .11) 42%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .hero-inner {
        pointer-events: none;
    }

    .hero-inner a {
        pointer-events: auto;
    }

    .hero-glow {
        transition: left .5s cubic-bezier(.22, .61, .36, 1), top .5s cubic-bezier(.22, .61, .36, 1);
    }

    .hero-track i:nth-child(18n + 1):hover ~ .hero-glow {
        left: 2.778%;
    }

    .hero-track i:nth-child(18n + 2):hover ~ .hero-glow {
        left: 8.333%;
    }

    .hero-track i:nth-child(18n + 3):hover ~ .hero-glow {
        left: 13.889%;
    }

    .hero-track i:nth-child(18n + 4):hover ~ .hero-glow {
        left: 19.444%;
    }

    .hero-track i:nth-child(18n + 5):hover ~ .hero-glow {
        left: 25.000%;
    }

    .hero-track i:nth-child(18n + 6):hover ~ .hero-glow {
        left: 30.556%;
    }

    .hero-track i:nth-child(18n + 7):hover ~ .hero-glow {
        left: 36.111%;
    }

    .hero-track i:nth-child(18n + 8):hover ~ .hero-glow {
        left: 41.667%;
    }

    .hero-track i:nth-child(18n + 9):hover ~ .hero-glow {
        left: 47.222%;
    }

    .hero-track i:nth-child(18n + 10):hover ~ .hero-glow {
        left: 52.778%;
    }

    .hero-track i:nth-child(18n + 11):hover ~ .hero-glow {
        left: 58.333%;
    }

    .hero-track i:nth-child(18n + 12):hover ~ .hero-glow {
        left: 63.889%;
    }

    .hero-track i:nth-child(18n + 13):hover ~ .hero-glow {
        left: 69.444%;
    }

    .hero-track i:nth-child(18n + 14):hover ~ .hero-glow {
        left: 75.000%;
    }

    .hero-track i:nth-child(18n + 15):hover ~ .hero-glow {
        left: 80.556%;
    }

    .hero-track i:nth-child(18n + 16):hover ~ .hero-glow {
        left: 86.111%;
    }

    .hero-track i:nth-child(18n + 17):hover ~ .hero-glow {
        left: 91.667%;
    }

    .hero-track i:nth-child(18n + 18):hover ~ .hero-glow {
        left: 97.222%;
    }

    .hero-track i:nth-child(n + 1):nth-child(-n + 18):hover ~ .hero-glow {
        top: 5.000%;
    }

    .hero-track i:nth-child(n + 19):nth-child(-n + 36):hover ~ .hero-glow {
        top: 15.000%;
    }

    .hero-track i:nth-child(n + 37):nth-child(-n + 54):hover ~ .hero-glow {
        top: 25.000%;
    }

    .hero-track i:nth-child(n + 55):nth-child(-n + 72):hover ~ .hero-glow {
        top: 35.000%;
    }

    .hero-track i:nth-child(n + 73):nth-child(-n + 90):hover ~ .hero-glow {
        top: 45.000%;
    }

    .hero-track i:nth-child(n + 91):nth-child(-n + 108):hover ~ .hero-glow {
        top: 55.000%;
    }

    .hero-track i:nth-child(n + 109):nth-child(-n + 126):hover ~ .hero-glow {
        top: 65.000%;
    }

    .hero-track i:nth-child(n + 127):nth-child(-n + 144):hover ~ .hero-glow {
        top: 75.000%;
    }

    .hero-track i:nth-child(n + 145):nth-child(-n + 162):hover ~ .hero-glow {
        top: 85.000%;
    }

    .hero-track i:nth-child(n + 163):nth-child(-n + 180):hover ~ .hero-glow {
        top: 95.000%;
    }

    .hero:has(.hero-inner a:hover) .hero-glow {
        left: 26%;
        top: 79%;
    }
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--grad);
    opacity: .9;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 108px;
    padding-bottom: 112px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.hero-inner h1 {
    max-width: 19ch;
}

.lead {
    font-size: 1.16rem;
    line-height: 1.62;
    color: var(--body);
    max-width: 62ch;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: .96rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn-solid {
    background: var(--grad);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(2, 87, 232, .25);
}

.btn-solid:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(2, 87, 232, .32);
}

.btn-ghost {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    color: var(--ink);
    border-color: #c9d6ea;
    transform: translateY(-2px);
}

.section {
    padding: 96px 0;
}

.band {
    padding: 96px 0;
    background: var(--tint);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sec-head {
    max-width: 640px;
    margin-bottom: 52px;
}

.sec-head h2 {
    margin-bottom: .35em;
}

.sec-lead {
    font-size: 1.04rem;
    color: var(--body);
    margin: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 34px 34px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #d3dfef;
    box-shadow: var(--shadow);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-num {
    display: block;
    margin-bottom: 16px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--blue-mid);
}

.card h3 {
    margin-bottom: .55em;
}

.card p {
    font-size: .97rem;
    margin: 0;
}

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

.steps li {
    counter-increment: step;
    position: relative;
    padding-top: 74px;
    border-top: 1px solid var(--line);
}

.steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 26px;
    left: 0;
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    color: #c3d2e8;
    pointer-events: none;
}

.steps li::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--grad);
}

.steps h3 {
    margin: 0 0 .5em;
    font-size: 1.05rem;
}

.steps p {
    font-size: .95rem;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
    align-items: start;
}

.points {
    list-style: none;
    margin: 0;
    padding: 30px 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.points li {
    position: relative;
    padding: 14px 0 14px 30px;
    border-bottom: 1px solid var(--line);
    font-size: .96rem;
    color: var(--ink);
}

.points li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.points li:first-child {
    padding-top: 0;
}

.points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--grad);
}

.points li:first-child::before {
    top: 8px;
}

.cta {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    border-radius: 20px;
    padding: 76px 64px;
    text-align: center;
}

.cta::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    height: 480px;
    background: radial-gradient(ellipse at center, rgba(54, 218, 253, .26) 0%, rgba(2, 87, 232, .12) 45%, rgba(26, 42, 76, 0) 72%);
    pointer-events: none;
}

.cta > * {
    position: relative;
}

.cta h2 {
    color: var(--white);
    margin-bottom: .4em;
}

.cta .kicker {
    justify-content: center;
}

.cta-lead {
    max-width: 52ch;
    margin: 0 auto;
    color: #b8c6de;
    font-size: 1.04rem;
}

.cta-label {
    margin: 40px 0 8px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #7f91b2;
}

.cta-mail {
    display: inline-block;
    font-size: clamp(1.3rem, 3.4vw, 1.95rem);
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--cyan);
    border-bottom: 2px solid rgba(54, 218, 253, .35);
    padding-bottom: 3px;
    transition: border-color .2s ease;
}

.cta-mail:hover {
    color: var(--white);
    border-bottom-color: var(--cyan);
}

.site-foot {
    background: var(--navy-deep);
    padding: 56px 0 44px;
}

.foot-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
}

.foot-brand img {
    width: auto;
    height: 26px;
    margin-bottom: 14px;
}

.foot-brand p {
    margin: 0;
    font-size: .9rem;
    color: #8697b6;
}

.foot-meta {
    text-align: right;
}

.foot-meta a {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: .96rem;
    font-weight: 500;
}

.foot-meta a:hover {
    color: var(--white);
}

.foot-meta p {
    margin: 0;
    font-size: .84rem;
    color: #67789a;
}

@media (max-width: 980px) {
    .cards,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 820px) {
    .head-inner {
        flex-wrap: wrap;
        gap: 14px 20px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        gap: 22px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .lang {
        margin-left: auto;
    }

    html {
        scroll-padding-top: 130px;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .wrap {
        padding: 0 20px;
    }

    .hero-inner {
        padding-top: 68px;
        padding-bottom: 72px;
    }

    .hero-inner h1 {
        max-width: none;
    }

    .section,
    .band {
        padding: 64px 0;
    }

    .sec-head {
        margin-bottom: 36px;
    }

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

    .card {
        padding: 30px 26px;
    }

    .cta {
        padding: 52px 26px;
    }

    .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .foot-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-meta {
        text-align: left;
    }
}

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

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