:root {
    --c1: #7431f4;
    --c2: #0cc2b8;
    --c3: #141824;
    --c4: #f6f7fb;
    --accent: #ff6b3d
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
    background: linear-gradient(135deg, var(--c4) 0%, #ffffff 40%);
    color: #1c2233
}

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

a:hover {
    opacity: .85
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.section{
    overflow: hidden;
}
.hero{
    overflow: hidden;
}

.nav {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0
}

.brand {
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 1.125rem;
    color: var(--c3)
}

.menu {
    display: flex;
    gap: 16px
}

.menu a {
    padding: 10px 14px;
    border-radius: 12px
}

.menu a.active, .menu a:focus {
    background: rgba(116, 49, 244, .08)
}

.hero {
    background: radial-gradient(1000px 400px at 10% -10%, rgba(116, 49, 244, .25) 0%, transparent 70%), radial-gradient(600px 300px at 100% 0, rgba(12, 194, 184, .18) 0%, transparent 60%), linear-gradient(180deg, #0f1220 0%, #1a1f33 100%);
    color: #fff
}

.hero .wrap {
    display: grid;
    grid-template-columns:1.2fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 72px 0
}

.h1 {
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    margin: 0 0 14px
}

.lead {
    font-size: clamp(18px, 1.7vw, 22px);
    opacity: .92;
    margin: 0 0 22px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--c1);
    color: #fff;
    border: none
}

.btn.alt {
    background: var(--c2);
    color: #0a111a
}

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

.card {
    background: #fff;
    border: 1px solid #e6e8ef;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(19, 25, 45, .06)
}

.card.dark {
    background: #121628;
    color: #f1f4ff;
    border-color: #272b3d
}

.card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem
}

.section {
    padding: 64px 0
}

.section.alt {
    background: #f7f9ff
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: #111;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .75rem;
    letter-spacing: .6px
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

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

.media.reverse {
    grid-template-columns:1fr 1fr
}

.media img {
    width: 100%;
    border-radius: 16px;
    display: block
}

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

.input, .select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cfd3e2;
    border-radius: 12px;
    font: inherit
}

textarea {
    min-height: 140px
}

footer {
    background: #0e1220;
    color: #c9d0ff
}

.footerwrap {
    padding: 36px 0;
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 22px;
    align-items: start
}

.small {
    font-size: .925rem;
    opacity: .92
}

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

.kicker {
    font-weight: 800;
    letter-spacing: .6px;
    color: var(--c2)
}

.legal a {
    color: #c9d0ff
}

.hero-figure {
    position: relative
}

.dot {
    position: absolute;
    width: 140px;
    height: 140px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at 30% 30%, rgba(12, 194, 184, .8), transparent 60%);
    filter: blur(1px);
    border-radius: 50%
}

@media (max-width: 900px) {
    .hero .wrap {
        grid-template-columns:1fr
    }

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

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

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

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

    .menu{
        display: none;
    }
}

img {
    max-width: 100%;
}