:root {
    --blue: #1769ff;
    --cyan: #24e0ff;
    --ink: #051226;
    --paper: #f4f7fc;
    --line: #d6e0ef
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #07152b;
    background: var(--paper)
}

.wrap {
    width: min(1120px, calc(100% - 42px));
    margin: auto
}

.topbar {
    height: 82px;
    padding: 0 max(30px, calc((100% - 1120px)/2));
    display: flex;
    gap: 35px;
    align-items: center;
    background: #030d1e;
    color: white
}

.brand {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 21px
}

.brand-logo {
    display: block;
    width: 96px;
    height: auto
}

.brand small {
    display: block;
    color: #1c80ff;
    font-size: 10px;
    letter-spacing: 4px
}

.brand-code {
    font-size: 31px;
    color: #2877ff;
    letter-spacing: -8px;
    margin-right: 7px
}

.topbar nav {
    display: flex;
    gap: 29px;
    margin-left: auto
}

.topbar nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px
}

.topbar nav .active {
    border-bottom: 2px solid var(--blue);
    padding: 11px 10px
}

.mini-cta,
.button {
    background: linear-gradient(110deg, #196dff, #1557da);
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: 8px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 8px 20px #0b53cb55
}

.mini-cta {
    font-size: 11px;
    padding: 11px 16px
}

.hero {
    overflow: hidden;
    color: white;
    background: radial-gradient(#000a1d 100%)
}

.hero-grid {
    min-height: 485px;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center
}

.hero-copy h1 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -1.8px;
    margin: 0 0 17px
}

.hero h1 em,
strong {
    font-style: normal;
    color: #1c70ff
}

.hero-copy p {
    max-width: 440px;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 23px
}

.button b {
    font-size: 22px;
    margin-left: 8px;
    font-weight: 900;
    -webkit-text-stroke: .7px currentColor
}

.hero-art {
    width: 100%;
    max-height: 450px;
    object-fit: contain
}

.light-section {
    padding: 38px 0;
    background: linear-gradient(110deg, #fff, #eff4fb)
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center
}

.kicker {
    font-size: 11px;
    color: #1467e9;
    font-weight: 800;
    margin: 0 0 8px
}

.light-section h2,
.automation h2,
.contact h2 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.8px;
    margin: 0 0 17px
}

.feature {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 13px 0;
    font-size: 13px;
    line-height: 1.4
}

.feature i {
    font-size: 25px;
    font-style: normal;
    color: var(--blue);
    border: 1px solid var(--line);
    box-shadow: 0 3px 10px #26466b1a;
    border-radius: 9px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: none
}

.workspace img {
    width: 100%;
    display: block
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-size: 10px;
    margin-top: -4px
}

.stats b,
.stats small {
    display: block
}

.automation {
    padding: 28px 0 39px;
    color: #fff;
    background: radial-gradient( #073f81 0%, #031838 0%, #020b18 90%)
}

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

.flow {
    display: flex;
    justify-content: center
}

.flow img {
    display: block;
    width: min(85%, 306px);
    border-radius: 22px
}

.bot {
    width: 170px;
    height: 105px;
    margin: 0 auto 18px;
    border: 1px solid #27dfff;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #30e9ff;
    font-size: 67px;
    box-shadow: 0 0 28px #088aff88
}

.flow-steps {
    border: 1px solid #1466ad;
    border-radius: 14px;
    overflow: hidden;
    max-width: 270px;
    margin: auto;
    background: #08305c80
}

.flow-steps p {
    margin: 0;
    padding: 13px 18px;
    border-bottom: 1px solid #195381;
    font-size: 14px
}

.flow-steps p:last-child {
    border: 0
}

.flow-steps b {
    float: right;
    color: #4de4bc
}

.checks {
    padding: 0;
    list-style: none;
    line-height: 1.35;
    font-size: 14px
}

.checks li {
    padding: 7px 0 7px 35px;
    position: relative
}

.checks li:before {
    content: '✓';
    position: absolute;
    left: 2px;
    top: 5px;
    color: #2ad8ff;
    border: 2px solid #087eea;
    border-radius: 7px;
    padding: 0 3px
}

.center {
    text-align: center
}

.process {
    padding-top: 20px
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px
}

.process-grid article {
    position: relative;
    padding: 35px 26px 18px;
    border: 1px solid var(--line);
    text-align: center;
    min-height: 172px
}

.process-grid span {
    position: absolute;
    top: -15px;
    left: calc(50% - 15px);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 12px;
    font-weight: bold
}

.process-grid i {
    display: block;
    color: var(--blue);
    font-size: 35px;
    font-style: normal
}

.process-grid h3 {
    font-size: 15px;
    margin: 9px
}

.process-grid p {
    font-size: 12px;
    line-height: 1.35;
    margin: 0
}

.big-cta {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 18px;
    padding: 19px 48px;
    border-radius: 18px;
    background: linear-gradient(115deg, #000e23,#061d41);
    color: white
}

.arrow {
    font-size: 100px;
    line-height: 1;
    color: #1b9bff;
    text-shadow: 0 0 18px #36d7ff
}

.big-cta h2 {
    margin: 0 0 12px;
    font-size: 28px
}

.big-cta a {
    display: inline-block;
    background: white;
    color: #1769ff;
    text-decoration: none;
    border-radius: 8px;
    padding: 13px 45px;
    font-weight: bold
}

.contact {
    padding: 30px 0;
    background: linear-gradient(120deg, #021223);
    color: #fff
}

.contact-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 65px
}

.contact h2 {
    font-size: 25px
}

.contact>p,
.contact-grid>div>p {
    font-size: 14px;
    line-height: 1.55
}

.channel {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 19px 0;
    color: #fff
}

.channel img {
    width: 21px;
    height: 21px;
    margin-top: 1px
}

.channel span {
    display: flex;
    flex-direction: column;
    line-height: 1.35
}

.channel a {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    line-height: 1.35
}

.channel a:hover small {
    text-decoration: underline
}

.channel small {
    font-size: 14px
}

form {
    border: 1px solid #36506f;
    border-radius: 12px;
    padding: 16px 22px;
    display: grid;
    gap: 9px;
    background: #09203a88
}

label {
    font-size: 11px;
    font-weight: bold;
    display: grid;
    gap: 5px
}

input,
textarea,
select {
    font: inherit;
    color: white;
    background: #273a52;
    border: 0;
    border-radius: 6px;
    padding: 10px;
    font-size: 12px;
    width: 100%
}

textarea {
    height: 50px;
    resize: vertical
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

form .button {
    justify-content: center;
    margin-top: 5px;
    width: 100%
}

.form-status { min-height: 16px; margin: 0; color: #b8d9ff; font-size: 11px; line-height: 1.35 }
form .button:disabled { cursor: wait; opacity: .7 }

@media(max-width:800px) {
    .topbar {
        padding: 0 20px
    }

    .topbar nav {
        display: none
    }

    .mini-cta {
        margin-left: auto
    }

    .hero-grid,
    .two,
    .auto-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        padding-top: 38px
    }

    .hero-art {
        max-height: 370px
    }

    .two {
        gap: 25px
    }

    .workspace {
        order: -1
    }

    .auto-grid {
        gap: 28px
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .big-cta {
        padding: 20px;
        gap: 10px
    }

    .big-cta h2 {
        font-size: 21px
    }

    .arrow {
        font-size: 65px
    }

    .contact-grid {
        gap: 20px
    }
}

.chat-open { overflow: hidden }

.chat-modal {
    position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; padding: 22px;
    background: #020c1bd1; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease
}
.chat-modal[aria-hidden="false"] { opacity: 1; visibility: visible }
.chat-window { width: min(100%, 410px); overflow: hidden; border: 1px solid #285786; border-radius: 18px; background: #f4f7fc; box-shadow: 0 25px 70px #000b; transform: translateY(16px) scale(.98); transition: transform .22s ease }
.chat-modal[aria-hidden="false"] .chat-window { transform: translateY(0) scale(1) }
.chat-header { min-height: 82px; padding: 14px 17px; display: flex; align-items: center; justify-content: space-between; color: white; background: linear-gradient(115deg, #04152d, #0a3f84) }
.chat-brand { display: flex; align-items: center; gap: 11px }
.chat-avatar { width: 46px; height: 46px; display: grid; place-items: center; overflow: hidden; border: 1px solid #3fbcff; border-radius: 13px; background: #0a2e5c }
.chat-avatar img { width: 35px; height: 35px }
.chat-brand b, .chat-brand small { display: block }
.chat-brand b { font-size: 14px }
.chat-brand small { margin-top: 4px; font-size: 11px; color: #b7d9ff }
.chat-brand small i { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; background: #38e5ad }
.chat-close { width: 34px; height: 34px; border: 0; border-radius: 8px; color: white; background: #ffffff16; cursor: pointer; font-size: 27px; line-height: 1 }
.chat-body { height: 350px; padding: 18px; overflow-y: auto; background: linear-gradient(145deg, #edf4fc, #f8fbff) }
.chat-time { margin: 0 0 16px; color: #7d8da1; text-align: center; font-size: 10px }
.chat-message { max-width: 85%; margin: 10px 0; padding: 12px 14px; border-radius: 4px 14px 14px; color: #10223b; background: white; box-shadow: 0 3px 12px #21446712; font-size: 13px; line-height: 1.45 }
.chat-message.user-message { margin-left: auto; border-radius: 14px 4px 14px 14px; color: white; background: #1769ff }
.chat-options { display: grid; gap: 7px; margin: 12px 0 18px }
.chat-option { padding: 10px 12px; border: 1px solid #b8d1ed; border-radius: 9px; color: #0c4fae; background: white; cursor: pointer; font: 600 12px Inter, Arial, sans-serif; text-align: left; transition: .15s ease }
.chat-option:hover, .chat-option:focus { border-color: #1769ff; color: white; background: #1769ff; outline: 0 }
.chat-form { display: grid; gap: 9px; margin: 12px 0 18px; padding: 13px; border: 1px solid #d5e2f0; border-radius: 10px; background: white }
.chat-form label { color: #233b57; font-size: 11px }
.chat-form input { color: #10223b; background: #eef3f9 }
.chat-form button { padding: 10px; border: 0; border-radius: 8px; color: white; background: #1769ff; cursor: pointer; font-weight: 700 }
.chat-finish { margin: 16px 0; padding: 13px; border-radius: 10px; color: #07573e; background: #dff8ee; font-size: 12px; line-height: 1.45 }
.chat-input { display: flex; gap: 8px; padding: 12px; border: 0; border-top: 1px solid #dce6f1; border-radius: 0; background: white }
.chat-input input { color: #10223b; background: #eef3f9; font-size: 13px }
.chat-input button { width: 39px; flex: none; display: grid; place-items: center; border: 0; border-radius: 8px; background: var(--blue); cursor: pointer }
.chat-send-icon { width: 17px; height: 17px; display: block; filter: brightness(0) invert(1) }

@media(max-width:470px) {
    .mini-cta {
        display: none
    }

    .hero-copy h1 {
        font-size: 36px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .big-cta a {
        padding: 12px
    }

    .topbar {
        gap: 15px
    }
}
