:root {
    --bg: #0b0f14;
    --panel: #101824;
    --panel2: #0f1621;
    --text: #e7eef8;
    --muted: #a9b7c9;
    --brand: #7c5cff;
    --brand2: #35d0ff;
    --line: rgba(255, 255, 255, .08);
    --shadow: 0 16px 48px rgba(0, 0, 0, .35);
    --radius: 18px;
    --ok: #59ffa8;
    --warn: #ffd36e;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: radial-gradient(1200px 800px at 20% 0%, rgba(124, 92, 255, .18), transparent 60%),
        radial-gradient(1200px 800px at 90% 10%, rgba(53, 208, 255, .12), transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: inherit
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid var(--line);
    background: rgba(16, 24, 36, .6);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 14px;
    z-index: 10;
    gap: 14px;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    letter-spacing: .2px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    box-shadow: 0 0 0 4px rgba(124, 92, 255, .14);
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .06)
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 20;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 960px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav {
        position: sticky;
        top: 14px;
        padding: 10px 18px;
        border-radius: 20px;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px;
        text-align: center;
    }
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124, 92, 255, .95), rgba(53, 208, 255, .9));
    color: #06101a;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(124, 92, 255, .25);
    white-space: nowrap;
}

.cta small {
    opacity: .8;
    font-weight: 900
}

.ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
    background: rgba(255, 255, 255, .04);
    white-space: nowrap;
}

.ghost:hover {
    background: rgba(255, 255, 255, .07)
}

.hero {
    padding: 34px 0 18px
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

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

    .nav {
        position: static;
        flex-wrap: wrap
    }
}

.card {
    border: 1px solid var(--line);
    background: rgba(16, 24, 36, .55);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.headline {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.06;
    margin: 0 0 10px;
    letter-spacing: -.7px;
}

.subhead {
    color: var(--muted);
    font-size: clamp(14px, 1.6vw, 18px);
    margin: 0 0 18px;
}

.section {
    padding: 16px 0
}

h2 {
    font-size: 20px;
    margin: 0 0 10px;
    letter-spacing: -.2px
}

h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--text)
}

p {
    margin: 14px 0;
    color: var(--muted);
    overflow-wrap: break-word;
}

ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted)
}

li {
    margin: 6px 0
}

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

@media (max-width: 760px) {
    .split {
        grid-template-columns: 1fr;
    }

    .split>div {
        min-width: 0;
    }
}

.pill {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 22, 33, .75);
    color: var(--muted);
    font-weight: 700;
}

.pill b {
    color: var(--text)
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 0
}

.chip {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(15, 22, 33, .7);
    font-weight: 800;
    font-size: 13px;
}

.highlight {
    color: var(--text);
    background: rgba(124, 92, 255, .08);
    border: 1px solid rgba(124, 92, 255, .15);
    padding: 16px;
    border-radius: 16px;
    line-height: 1.5;
}

.kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .25);
    color: var(--text);
}

.code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 22, 33, .8);
    padding: 12px;
    overflow-x: auto;
    max-width: 100%;
    color: var(--text);
}

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

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

.price {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 22, 33, .75);
    position: relative;
}

.price.featured {
    border-color: rgba(124, 92, 255, .35);
    box-shadow: 0 18px 52px rgba(124, 92, 255, .18);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(124, 92, 255, .35);
    background: rgba(124, 92, 255, .12);
    color: var(--text);
    font-weight: 900;
    letter-spacing: .2px;
    text-transform: uppercase;
}

.price .tag {
    color: var(--muted);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.price .amt {
    font-size: 30px;
    font-weight: 1000;
    margin: 6px 0 2px
}

.price .desc {
    margin: 0;
    color: var(--muted)
}

.price ul {
    margin-top: 10px
}

.footer {
    margin-top: 22px;
    padding: 18px 0 26px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.small {
    font-size: 13px
}

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

.statusRow {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

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

.check {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.check:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .1);
}

.check .icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(89, 255, 168, .08);
    border: 1px solid rgba(89, 255, 168, .18);
    color: var(--ok);
    flex: 0 0 auto;
    font-weight: 900;
}

.check .icon.warn {
    background: rgba(255, 211, 110, .08);
    border: 1px solid rgba(255, 211, 110, .18);
    color: var(--warn);
}

.check b {
    color: var(--text)
}

/* Roadmap Styles */
.roadmap {
    padding: 40px 0;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.roadmap-item {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line);
    background: rgba(16, 24, 36, .45);
    border-radius: var(--radius);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.roadmap-item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 92, 255, .4);
}

.roadmap-item .date {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand);
    margin-bottom: 8px;
    display: block;
}

.roadmap-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
}

.roadmap-item p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.roadmap-item .status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 16px;
    align-self: flex-start;
}

.status-now {
    background: rgba(124, 92, 255, .15);
    color: var(--brand);
    border: 1px solid rgba(124, 92, 255, .3);
}

.status-next {
    background: rgba(53, 208, 255, .1);
    color: #35d0ff;
    border: 1px solid rgba(53, 208, 255, .2);
}

.status-vision {
    background: rgba(255, 255, 255, .05);
    color: var(--muted);
    border: 1px solid var(--line);
}

.roadmap-item .cli-tag {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--brand2);
    border: 1px solid rgba(53, 208, 255, 0.2);
}