:root {
    --c1: #5a2fd8;
    --c2: #f0ecff;
    --c3: #00b3a1;
    --c4: #10131a;
    --c5: #ffe7a8
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: auto
}

body {
    margin: 0;
    font: 500 17px/1.6 "Poppins", system-ui, sans-serif;
    color: #1b2636;
    background: #fafbff
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

a {
    color: var(--c1);
    text-decoration: none;
    transition: .25s
}

a:hover {
    opacity: .8
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 18px
}

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

.col {
    padding: 0 12px;
    flex: 1 0 0
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%
}

.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%
}

.h {
    margin: 0 0 12px
}

h1 {
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.1
}

h2 {
    font-size: clamp(26px, 3.2vw, 40px)
}

h3 {
    font-size: clamp(20px, 2.4vw, 28px)
}

p {
    margin: 0 0 14px
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    border: 2px solid var(--c1);
    background: var(--c1);
    color: #fff;
    font-weight: 700
}

.btn.alt {
    background: #fff;
    color: var(--c1)
}

.btn.dark {
    background: var(--c4);
    border-color: var(--c4);
    color: #fff
}

.nav {
    background: #fff;
    border-bottom: 1px solid #e7e9f2
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px
}

.brand {
    font-weight: 800;
    letter-spacing: .3px;
    color: var(--c4)
}

.menu a {
    margin: 0 10px;
    padding: 8px 10px;
    border-radius: 8px
}

.menu a:hover {
    background: #f1f3fe
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c1), #2b128f);
    color: #fff
}

.hero .wrap {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 48px 20px
}
section{
    overflow:hidden;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    padding: 8px 12px;
    border-radius: 999px
}

.kicker {
    opacity: .9
}

.hero-img {
    position: relative;
    isolation: isolate
}

.hero-img::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px -40px;
    background: radial-gradient(300px 220px at 20% 0, rgba(255, 255, 255, .25), transparent 60%);
    z-index: -1
}

.card {
    background: #fff;
    border: 1px solid #eceef6;
    border-radius: 16px;
    padding: 22px
}

.card.dark {
    background: #0c1020;
    color: #eef3ff;
    border-color: #1a2140
}

.grid {
    display: grid;
    gap: 18px
}

.grid-3 {
    grid-template-columns:repeat(3, minmax(0, 1fr))
}

.grid-2 {
    grid-template-columns:repeat(2, minmax(0, 1fr))
}

.band {
    padding: 58px 0
}

.band.alt {
    background: #f7f8ff
}

.band.dark {
    background: var(--c4);
    color: #dfe7ff
}

.band.accent {
    background: linear-gradient(135deg, #fff, var(--c2))
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: var(--c5);
    color: #332100;
    margin-bottom: 10px
}

.figure {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(27, 38, 54, .15)
}

.form {
    display: grid;
    gap: 12px
}

.input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid #ccd3e0;
    font: inherit;
    background: #fff
}

textarea {
    min-height: 140px;
    resize: vertical
}

label {
    font-weight: 700;
    margin-bottom: 6px;
    display: block
}

.footer {
    background: #0e1222;
    color: #b9c7ff
}

.footer .wrap {
    padding: 30px 20px
}

.hero{
    overflow:hidden;
}

.footer a {
    color: #b9c7ff
}

.tagline {
    font-weight: 700
}

.badge.inv {
    background: #0e1222;
    color: #fff;
    border: 2px solid #233
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

@media (max-width: 990px) {
    .col-6, .col-4, .col-8 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .hero .wrap {
        flex-direction: column
    }
    .grid{
        grid-template-columns: minmax(0,1fr) !important;
    }
}
