:root {
    --pri: #5b3df5;
    --pri-d: #432cc0;
    --sec: #f0eaff;
    --acc: #ff7d57;
    --txt: #1f2430;
    --bg: #ffffff;
    --bg2: #0f1020;
    --mut: #6a7185
}

* {
    box-sizing: border-box
}

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

body {
    font: 500 16px 'Manrope', sans-serif;
    color: var(--txt);
    background: var(--bg)
}

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

a {
    text-decoration: none;
    color: var(--pri);
    transition: opacity .2s
}

a:hover {
    opacity: .8
}

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

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

.brand {
    font-weight: 800;
    letter-spacing: .4px
}

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

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

.btn.alt {
    background: transparent;
    color: var(--pri)
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--acc);
    color: #fff;
    font-weight: 700;
    font-size: .875rem
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80rem 60rem at 10% 20%, rgba(255, 255, 255, .12), transparent 60%), linear-gradient(135deg, var(--bg2), #1b133b)
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../imgcase/imgme1.webp');
    background-size: cover;
    background-position: center;
    mix-blend: overlay;
    opacity: .35
}

.hero .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
    text-align: center;
    max-width: 860px;
    padding: 40px 20px
}

.hero h1 {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.05;
    margin: 0
}

.hero p {
    font-size: clamp(16px, 2.2vw, 20px);
    opacity: .95
}

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

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

@media (min-width: 768px) {
    .grid.cols-3 {
        grid-template-columns:repeat(3, 1fr)
    }
}

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

.card.dark {
    background: #0f1020;
    border-color: #1f2040;
    color: #e8eaf7
}

.kicker {
    color: var(--acc);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .8rem
}

.section {
    padding: 64px 20px
}

.section.dark {
    background: #0f1020;
    color: #e8eaf7
}

.section.tint {
    background: var(--sec)
}

.h2 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.2;
    margin: 0 0 14px
}

.p {
    margin: 0 0 14px;
    line-height: 1.7;
    color: var(--mut)
}

.p.light {
    color: #cbd0df
}

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

.icon {
    flex: 0 0 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--pri);
    color: #fff
}

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

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center
}

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

.input, textarea, select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d7d8e6;
    border-radius: 12px;
    background: #fff;
    font: 500 16px 'Manrope', sans-serif
}

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

.invert {
    background: linear-gradient(135deg, var(--pri-d), var(--pri));
    color: #fff;
    border-radius: 18px
}

.invert .input, .invert textarea, .invert select {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .25);
    color: #fff
}

.invert .input::placeholder, .invert textarea::placeholder {
    color: #e6e8ff
}

.split {
    display: grid;
    gap: 22px
}

@media (min-width: 900px) {
    .split {
        grid-template-columns:1.1fr .9fr
    }
}

.footer {
    background: #0b0d1a;
    color: #bfc6dc;
    padding: 40px 0;
    margin-top: 40px
}

.footer a {
    color: #d8ddff
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    align-items: center
}

.small {
    font-size: .9rem
}

.hr {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    margin: 18px 0
}

.tag {
    padding: 6px 10px;
    border: 1px dashed var(--pri);
    border-radius: 10px;
    color: var(--pri);
    font-weight: 700;
    font-size: .8rem
}

.figure {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ececf6
}

@media screen and (max-width: 767px) {
    .menu{
        display: none;
    }
}