:root {
    --bg: #0f1520;
    --fg: #edf2ff;
    --muted: #c6d0f5;
    --ink: #101114;
    --paper: #fafafc;
    --brand: #8a5cff;
    --brand2: #1ec6b3;
    --accent: #ffb86b;
    --danger: #ff6b6b
}

* {
    box-sizing: border-box
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, var(--bg), #0b101a);
    color: var(--fg);
    line-height: 1.65
}

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

a:hover {
    opacity: .8
}

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

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

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

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

.nav a {
    padding: 8px 12px;
    border-radius: 10px
}

.nav a.cta {
    background: var(--brand);
    color: #fff
}

.hero {
    position: relative;
    overflow: hidden
}

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

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

.h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin: 12px 0 10px
}

.lead {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--muted)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer
}

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

.btn.ghost {
    border-color: rgba(255, 255, 255, .2);
    color: #fff
}

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

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

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 22px
}

.card.light {
    background: #fff;
    color: var(--ink);
    border: 1px solid #eceef6
}

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

.section {
    padding: 64px 0
}

.section.alt {
    background: linear-gradient(180deg, #0b111c, #0d1421)
}

.section.paper {
    background: var(--paper);
    color: var(--ink)
}

.section.paper a {
    color: #4b58ff
}

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

.list {
    display: grid;
    grid-template-columns:1fr;
    gap: 14px
}

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

.split {
    display: grid;
    grid-template-columns:1fr;
    gap: 28px
}

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

.figure {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1)
}

.figure img {
    display: block;
    width: 100%;
    height: auto
}

.pill {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(142, 146, 255, .15);
    color: #fff
}

.small {
    font-size: .95rem;
    color: var(--muted)
}

.footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.footer .cols {
    display: grid;
    grid-template-columns:1fr;
    gap: 18px
}

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

.footer a {
    color: #cfd6ff
}

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

.input, textarea, select {
    width: 100%;
    background: #fff;
    border: 2px solid #e6e9f2;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 1rem;
    color: #111
}

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

.input:focus, textarea:focus {
    outline: none;
    border-color: var(--brand)
}

.dark-on-light {
    color: var(--ink)
}

.badge-invert {
    background: #fff;
    color: #111
}

.hr {
    height: 1px;
    background: rgba(255, 255, 255, .15);
    margin: 22px 0
}

.note {
    background: rgba(30, 198, 179, .12);
    border: 1px dashed rgba(30, 198, 179, .45);
    color: #d9fff7;
    padding: 14px;
    border-radius: 12px
}

.figure-ring {
    position: relative
}

.figure-ring:after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 24px;
    background: conic-gradient(from 120deg, var(--brand), var(--brand2), var(--accent), var(--brand));
    filter: blur(18px);
    opacity: .35;
    z-index: -1
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table td, .table th {
    border: 1px solid #e8ebf3;
    padding: 10px
}

.paper .badge {
    background: #111;
    color: #fff
}

.caption {
    font-size: .9rem;
    color: #64748b;
    margin-top: 8px
}

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