* {
    box-sizing: border-box
}

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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #0f1020;
    background: #f7f8fc
}

:root {
    --primary: #6a2efc;
    --primary-2: #4c19e8;
    --ink: #0f1020;
    --muted: #5b6073;
    --paper: #ffffff;
    --soft: #eef0fb;
    --dark: #0a0b16;
    --accent: #00d1b2
}

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

a:hover {
    opacity: .9
}

img {
    max-width: 100%;
    height: auto;
    border: 0
}

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

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

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

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns:1fr 1fr
    }

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

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

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

.space-between {
    justify-content: space-between
}

.center {
    justify-content: center
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid transparent
}

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

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary)
}

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

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(106, 46, 252, .1);
    color: var(--primary);
    font-weight: 700;
    font-size: .85rem
}

.nav {
    background: var(--paper);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e7e9f4
}

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

.nav a {
    color: var(--ink);
    padding: 12px;
    border-radius: 8px
}

.nav a.active, .nav a:hover {
    background: var(--soft)
}

.hero {
    position: relative;
    background: #0a0b16;
    color: #fff;
    padding: 96px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 70vmin;
    height: 70vmin;
    background: radial-gradient(closest-side, rgba(106, 46, 252, .5), rgba(106, 46, 252, .15) 55%, transparent 60%);
    filter: blur(10px);
    z-index: 0
}

.hero::afteR{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000;
    opacity: .6;
}

.hero .wrap {
    position: relative;
    z-index: 1
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: .2em 0 .4em
}

.hero p {
    color: #dfe1ff;
    max-width: 720px
}

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
}

.hero-visual {
    position: relative;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12)
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .85
}

.section {
    padding: 72px 0
}

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

.section.light {
    background: #fafbff
}

.h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin: 0 0 10px
}

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

.card {
    background: var(--paper);
    border: 1px solid #e7e9f4;
    border-radius: 16px;
    padding: 24px;
    color: #1a1a1a;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 46, 252, .1);
    color: var(--primary);
    font-size: 20px
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px
}

.stat b {
    font-size: 1.6rem
}

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

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

.split-45 {
    grid-template-columns:1fr
}

@media (min-width: 992px) {
    .split-2 {
        grid-template-columns:1fr 1fr
    }

    .split-45 {
        grid-template-columns:45% 55%
    }
}

.input, .textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #dde1f0;
    border-radius: 12px;
    background: #fff;
    font: inherit;
    color: var(--ink)
}

.input:focus, .textarea:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(106, 46, 252, .08)
}

.footer {
    background: #090a15;
    color: #c8cbff;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer a {
    color: #c8cbff
}

.small {
    font-size: .95rem
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px
}

.table td {
    background: var(--paper);
    padding: 14px 16px;
    border: 1px solid #eceef7;
    color: #1a1a1a;
}

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

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

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

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

.privacy h2, .cookies h2, .about h2 {
    margin: 24px 0 8px
}

hr {
    border: none;
    border-top: 1px solid #eceef7;
    margin: 24px 0
}

.header-float {
    position: absolute;
    inset: auto 16px -26px auto;
    background: var(--paper);
    color: var(--ink);
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #eceef7;
    box-shadow: 0 8px 24px rgba(10, 11, 22, .12)
}

.tagline {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 209, 178, .12);
    color: #02b49a;
    font-weight: 800
}

.hero {
    overflow: hidden;
}

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