:root {
    --bg: #0b0f1a;
    --panel: rgba(255,255,255,.06);
    --panel-2: rgba(255,255,255,.09);
    --border: rgba(255,255,255,.12);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.68);
    --muted-2: rgba(255,255,255,.52);
    --brand: #7c5cff;
    --brand-2: #2dd4bf;
    --shadow: 0 18px 50px rgba(0,0,0,.45);
    --radius: 16px;
    --radius-sm: 12px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}
    /* Top gradient glow (only at page top) */
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 420px; /* controls how far glow extends */
        pointer-events: none;
        z-index: -1;
        background: radial-gradient(900px 420px at 10% -20%, rgba(124,92,255,.35), transparent 65%), radial-gradient(900px 420px at 90% -10%, rgba(45,212,191,.18), transparent 60%);
    }

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        opacity: .92;
    }

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.small {
    font-size: .92rem;
}

.muted {
    color: var(--muted);
}

.site {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    padding: 40px 0 56px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(11,15,26,.68);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .2px;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(124,92,255,1), rgba(45,212,191,.9));
    color: #08101a;
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(124,92,255,.18);
}

.brand-text {
    font-size: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
}

    .nav a {
        padding: 8px 10px;
        border-radius: 10px;
    }

        .nav a:hover {
            color: var(--text);
            background: rgba(255,255,255,.05);
        }

.nav-toggle {
    display: none;
    width: 44px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: rgba(255,255,255,.82);
        border-radius: 2px;
        transition: transform .18s ease, opacity .18s ease;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.mobile-nav {
    border-top: 1px solid var(--border);
    background: rgba(11,15,26,.85);
}

.mobile-nav-inner {
    padding: 14px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .mobile-nav-inner a {
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid transparent;
        background: rgba(255,255,255,.03);
        color: var(--text);
    }

        .mobile-nav-inner a:hover {
            border-color: rgba(255,255,255,.10);
            background: rgba(255,255,255,.05);
        }

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,.02);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 0;
}

.footer-links {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

    .footer-links a {
        color: var(--muted);
    }

        .footer-links a:hover {
            color: var(--text);
        }

.brand-footer {
    margin-bottom: 10px;
}

/* UI blocks you’ll reuse across pages */
.card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card-pad {
    padding: 22px;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kicker {
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .78rem;
}

.h1 {
    font-size: clamp(2.0rem, 3vw, 2.8rem);
    line-height: 1.06;
    margin: 10px 0 12px;
}

.h2 {
    font-size: clamp(1.5rem, 2vw, 2.0rem);
    line-height: 1.14;
    margin: 0 0 10px;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 72ch;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: var(--text);
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    user-select: none;
    white-space: nowrap;
}

    .btn:hover {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.20);
        transform: translateY(-1px);
    }

    .btn:active {
        transform: translateY(0px);
    }

.btn-primary {
    border-color: rgba(124,92,255,.55);
    background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(45,212,191,.72));
    color: #071019;
}

    .btn-primary:hover {
        border-color: rgba(124,92,255,.75);
        background: linear-gradient(135deg, rgba(124,92,255,1), rgba(45,212,191,.82));
    }

.btn-sm {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
}

/* Pricing tier cards */
.tier {
    position: relative;
    overflow: hidden;
}

    .tier .tier-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .tier .tier-name {
        font-weight: 700;
        font-size: 1.1rem;
    }

    .tier .tier-price {
        font-weight: 800;
        letter-spacing: -.02em;
        font-size: 1.2rem;
    }

    .tier .tier-desc {
        color: var(--muted);
        line-height: 1.55;
        margin: 0 0 14px;
    }

    .tier ul {
        margin: 0;
        padding-left: 18px;
        color: var(--muted);
        line-height: 1.65;
    }
/* Forms */
.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    color: var(--muted);
    font-weight: 600;
    font-size: .92rem;
}

.input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: var(--text);
    padding: 12px 12px;
    outline: none;
    transition: border-color .12s ease, background .12s ease;
}

    .input:focus {
        border-color: rgba(124,92,255,.55);
        background: rgba(255,255,255,.06);
    }

.textarea {
    resize: vertical;
    min-height: 44px;
}

.val {
    color: rgba(255,120,120,.95);
    font-size: .88rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: var(--text);
    font-size: .82rem;
    font-weight: 650;
}

.tier.featured {
    border-color: rgba(124,92,255,.55);
    box-shadow: 0 20px 70px rgba(124,92,255,.12);
}

    .tier.featured::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(420px 220px at 30% 0%, rgba(124,92,255,.26), transparent 55%), radial-gradient(420px 220px at 70% 0%, rgba(45,212,191,.16), transparent 55%);
        pointer-events: none;
    }

/* Sections */
.section {
    margin: 28px 0;
}

    .section + .section {
        margin-top: 34px;
    }

.hr {
    height: 1px;
    background: rgba(255,255,255,.10);
    border: 0;
    margin: 26px 0;
}

/* pricing */
.table-wrap {
    overflow: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
}

.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

    .compare th,
    .compare td {
        text-align: left;
        padding: 14px 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        color: var(--muted);
    }

    .compare thead th {
        color: var(--text);
        font-weight: 700;
        background: rgba(255,255,255,.04);
    }

    .compare tbody tr:hover td {
        background: rgba(255,255,255,.03);
        color: var(--text);
    }

/* FAQ */
.faq details {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    border-radius: 14px;
    padding: 12px 14px;
    margin-top: 12px;
}

.faq summary {
    cursor: pointer;
    list-style: none;
    color: var(--text);
    font-weight: 650;
}

    .faq summary::-webkit-details-marker {
        display: none;
    }

.faq details > div {
    margin-top: 10px;
    line-height: 1.7;
}


/* Responsive */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .main {
        padding-top: 26px;
    }
}
