:root {
    --bg: #0b1020;
    --panel: #101831;
    --panel2: #0f1630;
    --text: #e8ecff;
    --muted: #aab3d6;
    --line: rgba(255, 255, 255, .10);
    --accent: #7c5cff;
    --accent2: #33d6ff;
    --shadow: 0 14px 50px rgba(0, 0, 0, .35);
    --radius: 18px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(1200px 600px at 20% 10%, rgba(124, 92, 255, .22), transparent 60%),
        radial-gradient(900px 500px at 80% 0%, rgba(51, 214, 255, .16), transparent 60%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto
}

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

.hidden {
    display: none !important
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(11, 16, 32, .65);
    border-bottom: 1px solid var(--line);
}

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

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

.brand__logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(124, 92, 255, .9), rgba(51, 214, 255, .7));
    box-shadow: var(--shadow);
    font-weight: 800;
}

.brand__title {
    font-weight: 800;
    letter-spacing: .2px
}

.brand__sub {
    font-size: 13px;
    color: var(--muted)
}

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

.nav a {
    font-size: 14px;
    color: var(--muted)
}

.nav a:hover {
    color: var(--text)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(51, 214, 255, .9));
    color: #070a14;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow);
}

.btn--ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn--sm {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 800
}

.hero {
    padding: 42px 0 18px
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
    align-items: stretch;
}

.badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
    font-size: 13px;
}

h1 {
    margin: 12px 0 10px;
    font-size: 40px;
    line-height: 1.1
}

.hero__cta {
    display: flex;
    gap: 12px;
    margin: 18px 0 18px;
    flex-wrap: wrap
}

.stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.stat {
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    border-radius: 16px;
    min-width: 130px;
}

.stat__n {
    font-weight: 900;
    font-size: 20px
}

.stat__t {
    font-size: 13px;
    color: var(--muted)
}

.hero__card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: var(--shadow);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.pill {
    font-size: 13px;
    color: #0b1020;
    background: rgba(51, 214, 255, .9);
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 900;
}

.pill--soft {
    background: rgba(124, 92, 255, .85);
    color: #0b1020;
}

.hero__cardBody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.mini {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(11, 16, 32, .35);
    padding: 12px;
}

.mini__k {
    font-weight: 900;
    margin-bottom: 8px
}

.mini__list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px
}

.hero__cardBottom {
    font-size: 12px
}

.section {
    padding: 48px 0
}

.section--alt {
    background: rgba(255, 255, 255, .03);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.section--cta {
    padding: 54px 0;
    background: radial-gradient(900px 450px at 20% 0%, rgba(124, 92, 255, .22), transparent 55%), rgba(255, 255, 255, .02)
}

.section__head {
    margin-bottom: 18px
}

h2 {
    margin: 0 0 10px;
    font-size: 26px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius);
    padding: 16px;
}

.card__title {
    font-weight: 900;
    margin-bottom: 8px
}

.card__text {
    font-size: 14px;
    line-height: 1.6
}

.agent {
    cursor: pointer;
    transition: transform .12s ease, background .12s ease;
}

.agent:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .07)
}

.agent__name {
    font-weight: 950;
    margin-bottom: 6px
}

.agent__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    min-height: 60px
}

.agent__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px
}

.tag {
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    background: rgba(11, 16, 32, .25);
}

.note {
    margin-top: 14px;
    font-size: 12px
}

.timeline {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    padding: 14px;
}

.step {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
}

.step+.step {
    border-top: 1px solid var(--line)
}

.step__n {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(124, 92, 255, .22);
    border: 1px solid var(--line);
    font-weight: 950;
}

.step__t {
    font-weight: 950;
    margin-bottom: 4px
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius);
    padding: 18px;
}

.cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.footer {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    background: rgba(11, 16, 32, .55);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 50;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.modal__panel {
    position: relative;
    width: min(920px, 94%);
    max-height: 86vh;
    overflow: auto;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16, 24, 49, .98), rgba(12, 18, 40, .98));
    box-shadow: var(--shadow);
    padding: 16px;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    cursor: pointer;
}

.modal h3 {
    margin: 6px 0 10px;
    font-size: 22px
}

.modal .cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.modal ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6
}

.kpi {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--line);
    margin-top: 10px;
}

.kpi th,
.kpi td {
    padding: 10px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.kpi th {
    background: rgba(255, 255, 255, .05);
    text-align: left
}

.kpi tr:last-child td {
    border-bottom: none
}

@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr
    }

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

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

    .modal .cols {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 34px
    }

    .nav {
        display: none
    }
}