*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #070709;
    --text: #ede8e3;
    --muted: rgba(237, 232, 227, 0.50);
    --dim: rgba(237, 232, 227, 0.24);
    --border: rgba(255, 255, 255, 0.07);
    --border-h: rgba(255, 255, 255, 0.14);
    --lgs:
        0 2px 6px rgba(0, 0, 0, 0.12),
        inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.09),
        inset -3px -3px 0.5px -3.5px rgba(255, 255, 255, 0.85),
        inset 1px 1px 1px -0.5px rgba(255, 255, 255, 0.60),
        inset -1px -1px 1px -0.5px rgba(255, 255, 255, 0.60),
        inset 0 0 6px 6px rgba(255, 255, 255, 0.10),
        inset 0 0 2px 2px rgba(255, 255, 255, 0.05),
        0 0 18px rgba(0, 0, 0, 0.20);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9998;
}

#particle-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

#particle-bg canvas {
    display: block;
}

.gl {
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.042) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--lgs);
    position: relative;
    transition: background 0.28s, border-color 0.28s, transform 0.3s var(--ease);
}

.gl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.10) 50%, transparent 90%);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}

.gl:hover {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.060) 0%, rgba(255, 255, 255, 0.020) 100%);
    border-color: var(--border-h);
}

.wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.nav-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

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

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

.nav-gh {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    color: var(--muted);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.22s var(--ease);
}

.nav-gh:hover {
    color: var(--text);
    border-color: var(--border-h);
    background: rgba(255, 255, 255, 0.06);
}

.nav-add {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    color: var(--bg);
    background: var(--text);
    transition: all 0.22s var(--ease);
}

.nav-add:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 6px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--text);
}

.mobile-menu.open {
    display: flex;
}

.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

.hero-img-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    opacity: 0;
    animation: rise 0.9s 0.15s var(--ease) forwards;
}

.hero-glow {
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 232, 227, 0.07) 0%, transparent 70%);
    filter: blur(20px);
}

.hero-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-h);
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dim);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 24px;
    opacity: 0;
    animation: rise 0.7s 0.25s var(--ease) forwards;
}

.kdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--dim);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 15vw, 180px);
    letter-spacing: 8px;
    line-height: 0.9;
    color: var(--text);
    margin-bottom: 8px;
    opacity: 0;
    animation: rise 0.9s 0.35s var(--ease) forwards;
}

.hero-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 3.5vw, 40px);
    letter-spacing: 5px;
    color: var(--muted);
    margin-bottom: 24px;
    opacity: 0;
    animation: rise 0.85s 0.45s var(--ease) forwards;
}

.hero-desc {
    max-width: 460px;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 36px;
    opacity: 0;
    animation: rise 0.8s 0.55s var(--ease) forwards;
}

.hero-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.8s 0.65s var(--ease) forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
    box-shadow: var(--lgs);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--border-h);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: rise 0.7s 1s var(--ease) forwards;
}

.scroll-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, var(--dim), transparent);
    animation: spulse 2.2s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 9.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dim);
}

.divider {
    height: 1px;
    background: var(--border);
    position: relative;
    z-index: 1;
}

.stats-bar {
    position: relative;
    z-index: 1;
    padding: 0 28px;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 46px;
    letter-spacing: 2px;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--dim);
    margin-top: 8px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.sec-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 14px;
    display: block;
}

.sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5.5vw, 68px);
    letter-spacing: 3px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 14px;
}

.sec-desc {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    max-width: 360px;
}

.feat-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.feat-left {
    padding-top: 6px;
}

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

.feat-card .gl {
    padding: 26px 22px;
}

.feat-card:hover .gl {
    transform: translateY(-3px);
}

.feat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--border-h);
    line-height: 1;
    margin-bottom: 14px;
}

.feat-name {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 9px;
    line-height: 1.4;
}

.feat-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.72;
}

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

.command-category .gl {
    padding: 26px 22px;
}

.command-category:hover .gl {
    transform: translateY(-3px);
}

.command-title {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.4;
}

.command-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.command-list li {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 8px;
}

.command-list li:last-child {
    margin-bottom: 0;
}

.commands-page {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.faqs-page {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}


.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5.5vw, 68px);
    letter-spacing: 3px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 14px;
}

.page-desc {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    max-width: 460px;
    margin: 0 auto;
}

.cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.cta-card {
    padding: 54px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 4.5vw, 58px);
    letter-spacing: 3px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 8px;
}

.cta-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
}

.cta-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

footer {
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-brand img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.5;
}

.footer-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--muted);
}

.footer-copy {
    font-size: 12px;
    color: var(--dim);
}

.footer-copy a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copy a:hover {
    color: var(--text);
}

.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

.rv.vis {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: 0.09s;
}

.d2 {
    transition-delay: 0.18s;
}

.d3 {
    transition-delay: 0.27s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spulse {

    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.7;
    }
}

@media (max-width: 760px) {

    .nav-links,
    .nav-end {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .feat-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 34px 26px;
        flex-direction: column;
    }

    .cta-btns {
        width: 100%;
    }

    .cta-btns .btn {
        flex: 1;
        justify-content: center;
    }

    .wrap {
        padding: 0 20px;
    }

    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

.search-wrap {
    position: relative;
    max-width: 460px;
    margin: 28px auto 0;
}

.search-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dim);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 11px 16px 11px 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.22s, background 0.22s;
    box-shadow: var(--lgs);
}

.search-input::placeholder {
    color: var(--dim);
}

.search-input:focus {
    border-color: var(--border-h);
    background: rgba(255, 255, 255, 0.06);
}

.tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}

.tab {
    padding: 7px 16px;
    border-radius: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--muted);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    user-select: none;
}

.tab:hover {
    color: var(--text);
    border-color: var(--border-h);
}

.tab.active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.commands-page {
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}



.page-header {
    text-align: center;
    margin-bottom: 52px;
}

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

.command-category .gl {
    padding: 26px 22px;
}

.command-category:hover .gl {
    transform: translateY(-3px);
}

.command-category[data-category].hidden {
    display: none;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cat-badge {
    font-size: 9.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--dim);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
}

.command-title {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}

.command-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.command-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.command-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cmd-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13.5px;
    letter-spacing: 0.8px;
    color: var(--text);
    flex-shrink: 0;
}

.cmd-desc {
    font-size: 12px;
    color: var(--dim);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    display: none;
}

.empty-state.show {
    display: block;
}

.empty-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 8px;
}

.empty-sub {
    font-size: 13px;
    color: var(--dim);
}

.result-count {
    text-align: center;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 28px;
    min-height: 16px;
}



.faqs-page {
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.docs-page {
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

#faqs-hr1 {
    border: none;
    height: 2px;
    background-color: #252525;
}

.faq-item {
    margin-top:10px;
    display:flex;
    flex-direction: column;
    gap:20px;
}

.faq-item details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    transition: all 0.25s var(--ease);
}

.faq-item details:hover {
    border-color: var(--border-h);
    background: rgba(255, 255, 255, 0.04);
}


.faq-item summary {
    list-style: none; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    user-select: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::after {
    content: '+';
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: var(--dim);
    transition: transform 0.3s var(--ease);
}


.faq-item details[open] summary::after {
    content: '−'; /* Minus sign */
    transform: rotate(180deg);
}


.faq-item details p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

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

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

    .commands-page {
        padding: 80px 0 60px;
    }

    .faqs-page {
        padding: 80px 0 60px;
    }



    .docs-page {
        padding: 80px 0 60px;
    }
}