:root {
    --c1: #4c3cff;
    --c2: #0fd4a7;
    --c3: #14121f;
    --c4: #f5f7fb;
    --c5: #ff8552;
    --text: #1b2330;
    --muted: #5b6780
}

* {
    box-sizing: border-box
}

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

body {
    font-family: "Onest", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    background: var(--c4);
    color: var(--text);
    line-height: 1.6
}

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

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

a:hover {
    opacity: .8
}

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

.header {
    background: linear-gradient(90deg, var(--c3), #1f1b2e);
    color: #fff
}

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

.brand {
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 20px;
    display: flex;
    gap: 10px;
    align-items: center
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0
}

.nav a {
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px
}

.nav a:hover {
    background: rgba(255, 255, 255, .08)
}

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

.hero .wrap {
    display: grid;
    grid-template-columns:1.2fr 1fr;
    gap: 40px;
    padding: 72px 20px;
}

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, .12);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600
}

h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 14px 0 10px
}

.lead {
    font-size: 18px;
    color: #e8ebff;
    max-width: 60ch
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 700;
    cursor: pointer
}

.btn-primary {
    background: var(--c2);
    color: #081016
}

.btn-ghost {
    background: transparent;
    color: #fff;
    outline: 2px solid rgba(255, 255, 255, .35)
}

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

.grid-3 {
    display: grid;
    grid-template-columns:1fr;
    gap: 24px
}

.grid-2 {
    display: grid;
    grid-template-columns:1fr;
    gap: 24px
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(20, 18, 31, .06)
}

.card.dark {
    background: #171428;
    color: #dfe3ff
}

.section {
    padding: 64px 0
}

.section.dark {
    background: #0f0d1c;
    color: #e8ebff
}

.kicker {
    color: var(--c2);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 12px
}

.h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 10px 0 12px
}

.muted {
    color: var(--muted)
}

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

.list li {
    display: flex;
    gap: 10px
}

.icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 10, 22, .08)
}

.strip {
    background: linear-gradient(90deg, rgba(79, 60, 255, .08), rgba(15, 212, 167, .08));
    border-radius: 16px;
    padding: 18px
}

.figure {
    border-radius: 18px;
    overflow: hidden
}

.accent {
    background: linear-gradient(135deg, var(--c5), #ffb089)
}

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

.input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d7dbe7;
    border-radius: 10px;
    background: #fff;
    color: var(--text)
}

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

label {
    font-weight: 700;
    font-size: 14px
}

.footer {
    background: #0b0a14;
    color: #cfd3f7
}

.footer .row {
    display: grid;
    grid-template-columns:1fr;
    gap: 24px;
    padding: 36px 20px
}

.footer a {
    color: #cfd3f7
}

.legal {
    border-top: 1px solid rgba(207, 211, 247, .15);
    padding: 14px 0;
    color: #a7aee0
}

.blob {
    position: absolute;
    inset: auto -120px -160px auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(closest-side, #ffffff33, #ffffff00 70%);
    filter: blur(12px);
    transform: rotate(-10deg)
}

.hero-visual {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25)
}

.hero-visual:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .35))
}

.figure.tall {
    aspect-ratio: 4/3;
    object-fit: cover
}

.badge.dark {
    background: rgba(0, 0, 0, .35)
}

.note {
    font-size: 13px;
    color: #6b7399
}

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

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

    .footer .row {
        grid-template-columns:2fr 1fr 1fr
    }

    .hero .wrap {
        grid-template-columns:1.1fr .9fr
    }
}

@media screen and (max-width: 780px) {
    .header nav{
        display: none;
    }
}
