
:root {

    --primary: #6d7cff;

    --secondary: #00d4ff;

    --bg: #050816;

    --card: rgba(18, 24, 45, 0.78);

    --text: #f4f7fc;

    --muted: #9aa8be;

    --line: rgba(255, 255, 255, 0.1);

    --glass: rgba(255, 255, 255, 0.06);

    --glass-strong: rgba(255, 255, 255, 0.1);

    --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);

    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);

    --radius-sm: 12px;

    --radius-md: 20px;

    --radius-lg: 28px;

    --radius-xl: 36px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-display: 'Sora', system-ui, sans-serif;

    --font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-height: 76px;

    --content-max: 1200px;

    --glow-primary: color-mix(in srgb, var(--primary) 55%, transparent);

    --glow-secondary: color-mix(in srgb, var(--secondary) 45%, transparent);

}



* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}



html {

    scroll-behavior: smooth;

}



@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }



    *, *::before, *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

    }

}



::selection {

    background: color-mix(in srgb, var(--primary) 72%, #0a1020);

    color: #fff;

}



.skip-link {

    position: absolute;

    left: -9999px;

    top: auto;

    width: 1px;

    height: 1px;

    overflow: hidden;

    z-index: 100;

    padding: 12px 20px;

    border-radius: var(--radius-sm);

    background: linear-gradient(135deg, var(--primary), var(--secondary));

    color: white;

    font-family: var(--font-body);

    font-weight: 700;

    text-decoration: none;

    box-shadow: var(--shadow-soft);

}



.skip-link:focus {

    left: 16px;

    top: 16px;

    width: auto;

    height: auto;

    overflow: visible;

}



body {

    min-height: 100vh;

    font-family: var(--font-body);

    font-size: 1rem;

    line-height: 1.6;

    color: var(--text);

    background:

        radial-gradient(ellipse 120% 80% at 8% -10%, var(--glow-primary), transparent 50%),

        radial-gradient(ellipse 90% 70% at 92% 0%, var(--glow-secondary), transparent 48%),

        radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--primary) 8%, transparent), transparent 55%),

        var(--bg);

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

}



body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 0;

    background-image:

        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),

        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);

    background-size: 64px 64px;

    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);

    opacity: 0.85;

}



body::after {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 0;

    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

    opacity: 0.35;

    mix-blend-mode: overlay;

}



a {

    color: inherit;

}



h1, h2, h3, h4 {

    font-family: var(--font-display);

    font-weight: 700;

    letter-spacing: 0;
}



.sr-only {

    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}



.site-shell {

    position: relative;

    z-index: 1;

    min-height: 100vh;

    display: flex;

    flex-direction: column;

}



main {

    flex: 1;

    animation: content-enter 0.7s var(--ease-out) both;

}



@keyframes content-enter {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.site-header {

    position: sticky;

    top: 0;

    z-index: 40;

    border-bottom: 1px solid color-mix(in srgb, var(--primary) 22%, var(--line));

    background:

        linear-gradient(180deg, color-mix(in srgb, var(--bg) 78%, transparent) 0%, color-mix(in srgb, var(--bg) 92%, transparent) 100%),

        linear-gradient(90deg, color-mix(in srgb, var(--primary) 12%, transparent), transparent 42%, color-mix(in srgb, var(--secondary) 10%, transparent));

    backdrop-filter: blur(20px) saturate(1.35);

    -webkit-backdrop-filter: blur(20px) saturate(1.35);

    box-shadow:

        0 1px 0 rgba(255, 255, 255, 0.07) inset,

        0 16px 48px color-mix(in srgb, var(--primary) 12%, transparent);

}

.site-header::before {

    content: "";

    position: absolute;

    inset: 0 0 auto;

    height: 1px;

    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);

    opacity: 0.65;

    pointer-events: none;

}



.header-inner {

    position: relative;

    width: min(var(--content-max), calc(100% - 48px));

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 12px;

    padding: 14px 0 16px;

}

.header-primary {

    display: grid;

    grid-template-columns: minmax(0, auto) minmax(0, 1fr);

    grid-template-areas:

        "brand toggle"

        "nav nav"

        "toolbar toolbar";

    align-items: center;

    gap: 12px 16px;

}

.brand {

    grid-area: brand;

}

.nav-toggle {

    grid-area: toggle;

    justify-self: end;

}

.site-nav {

    grid-area: nav;

}

.header-toolbar,
.header-controls {

    grid-area: toolbar;

}

.breadcrumb-trail {

    align-self: center;

}



@media (min-width: 1021px) {

    .header-inner {

        padding: 16px 0 18px;

        gap: 10px;

    }



    .header-primary {

        grid-template-columns: auto minmax(0, 1fr) auto;

        grid-template-areas: "brand nav toolbar";

        gap: 12px 28px;

    }



    .nav-toggle {

        display: none !important;

    }



    .site-nav {

        justify-self: center;

        width: auto;

        max-width: 100%;

    }



    .header-toolbar,
    .header-controls {

        justify-self: end;

    }

}



.brand {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

    transition: transform 0.25s var(--ease-out), opacity 0.2s ease;

}



.brand:hover {

    transform: translateY(-1px);

    opacity: 0.95;

}



.logo {

    width: 48px;

    height: 48px;

    border-radius: 14px;

    display: grid;

    place-items: center;

    font-family: var(--font-display);

    font-size: 1.15rem;

    font-weight: 800;

    color: white;

    background: linear-gradient(145deg, var(--primary), var(--secondary));

    box-shadow:

        0 0 0 1px rgba(255, 255, 255, 0.12) inset,

        0 14px 36px var(--glow-primary);

    transition: box-shadow 0.3s var(--ease-out), transform 0.25s var(--ease-spring);

}



.brand:hover .logo {

    box-shadow:

        0 0 0 1px rgba(255, 255, 255, 0.18) inset,

        0 18px 44px var(--glow-primary),

        0 0 32px var(--glow-secondary);

    transform: scale(1.03);

}



.brand-copy strong {

    display: block;

    font-family: var(--font-display);

    font-size: 1.05rem;

    font-weight: 700;

    letter-spacing: 0;
}



.brand-copy span {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 0.76rem;

    font-weight: 500;

    letter-spacing: 0;
}



.nav-toggle {

    display: none !important;

    width: 44px;

    height: 44px;

    border: 1px solid color-mix(in srgb, var(--primary) 40%, var(--line));

    border-radius: var(--radius-sm);

    color: var(--text);

    background: var(--glass);

    cursor: pointer;

    transition: border-color 0.2s ease, background 0.2s ease;

}



.nav-toggle span,

.nav-toggle span::before,

.nav-toggle span::after {

    display: block;

    width: 18px;

    height: 2px;

    margin: auto;

    border-radius: 99px;

    background: currentColor;

    transition: 0.2s var(--ease-out);

}



.nav-toggle span::before,

.nav-toggle span::after {

    content: "";

    position: relative;

}



.nav-toggle span::before {

    top: -7px;

}



.nav-toggle span::after {

    top: 5px;

}



.nav-toggle.is-open span {

    background: transparent;

}



.nav-toggle.is-open span::before {

    top: 0;

    transform: rotate(45deg);

    background: var(--text);

}



.nav-toggle.is-open span::after {

    top: -2px;

    transform: rotate(-45deg);

    background: var(--text);

}



.site-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: nowrap;

    gap: 2px;

    width: 100%;

    padding: 4px;

    border: 1px solid color-mix(in srgb, var(--primary) 20%, var(--line));

    border-radius: 999px;

    background: color-mix(in srgb, var(--bg) 62%, transparent);

    box-shadow:

        inset 0 1px 0 rgba(255, 255, 255, 0.05),

        0 10px 28px rgba(0, 0, 0, 0.22);

    overflow-x: auto;

    scrollbar-width: none;

}

.site-nav::-webkit-scrollbar {

    display: none;

}

.header-toolbar,
.header-controls {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    min-width: 0;

}

.header-toolbar-sep {

    width: 1px;

    align-self: stretch;

    min-height: 28px;

    margin: 4px 2px;

    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--primary) 40%, var(--line)), transparent);

    opacity: 0.9;

}
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 12px 40px color-mix(in srgb, var(--primary) 8%, transparent);
}

.site-nav a,
.version-switcher a {
    text-decoration: none;
    color: var(--muted);
    transition: color 0.2s ease, background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}

.site-nav a {
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--text);
    background: var(--glass);
}

.site-nav a.is-active {
    color: white;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 72%, #0a1020), color-mix(in srgb, var(--secondary) 58%, #0a1020));
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--primary) 35%, transparent),
        0 10px 28px color-mix(in srgb, var(--primary) 24%, transparent);
}

.breadcrumb-trail {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding: 7px 12px;
    border: 1px solid color-mix(in srgb, var(--primary) 34%, var(--line));
    border-radius: 999px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, transparent), color-mix(in srgb, var(--secondary) 10%, transparent)),
        rgba(0, 0, 0, 0.18);
    box-shadow: 0 12px 34px color-mix(in srgb, var(--primary) 12%, transparent);
}

.breadcrumb-node {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    transition: 0.2s ease;
}

.breadcrumb-node::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 14px var(--secondary);
}

.breadcrumb-node:hover {
    color: white;
    background: color-mix(in srgb, var(--primary) 18%, transparent);
}

.breadcrumb-node.is-current {
    color: white;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 34%, transparent), color-mix(in srgb, var(--secondary) 24%, transparent));
}

.breadcrumb-connector {
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 14px color-mix(in srgb, var(--secondary) 55%, transparent);
}

.header-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

@media (min-width: 1021px) {
    .header-controls {
        flex-direction: row;
        align-items: center;
        width: auto;
        gap: 10px;
    }
}

.version-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
    min-width: 0;
}

.styled-select--version {
    flex: 1 1 auto;
    min-width: 132px;
    max-width: 168px;
}

.version-picker-label {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--muted) 88%, white 12%);
}

.version-select,
.project-source-select,
.styled-select-trigger {
    appearance: none;
    -webkit-appearance: none;
    color-scheme: dark;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--line));
    background-color: #0f1628;
    background-image:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), color-mix(in srgb, var(--secondary) 8%, transparent)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c7d0e0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, right 12px center;
    color: #f4f7ff;
}

.version-select,
.styled-select--version .styled-select-trigger {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 9px 36px 9px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.styled-select {
    position: relative;
    display: inline-block;
}

.styled-select--project {
    flex: 1;
    max-width: 360px;
}

.styled-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    background-image: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), color-mix(in srgb, var(--secondary) 8%, transparent));
}

.styled-select-value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.styled-select-chevron {
    flex-shrink: 0;
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c7d0e0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.styled-select.is-open .styled-select-chevron {
    transform: rotate(180deg);
}

.styled-select.is-open .styled-select-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: color-mix(in srgb, var(--primary) 18%, var(--line));
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary) 22%, transparent);
}

.styled-select--version.is-open .styled-select-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.styled-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
    margin: 0;
    padding: 6px;
    list-style: none;
    border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--line));
    border-top: none;
    border-radius: 0 0 14px 14px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--primary) 10%, #0f1628), #0a1020),
        #0f1628;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px color-mix(in srgb, var(--primary) 16%, transparent);
    max-height: 260px;
    overflow-y: auto;
}

.styled-select--version .styled-select-menu {
    border-radius: 0 0 18px 18px;
}

.styled-select-option {
    width: 100%;
    display: block;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #f0f4ff;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.styled-select-option:hover,
.styled-select-option:focus-visible {
    background: color-mix(in srgb, var(--secondary) 42%, #0f1628);
    color: #ffffff;
    outline: none;
}

.styled-select-option.is-selected {
    background: color-mix(in srgb, var(--primary) 68%, #0f1628);
    color: #ffffff;
}

.styled-select-option.is-selected:hover,
.styled-select-option.is-selected:focus-visible {
    background: color-mix(in srgb, var(--primary) 78%, #0f1628);
}

.styled-select .version-select,
.styled-select .project-source-select {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.version-select option,
.project-source-select option {
    background-color: #0f1628;
    color: #f0f4ff;
}

.version-switcher,
.site-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
    flex: 0 1 auto;
    min-width: 0;
    padding: 3px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg) 68%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--line));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.version-switcher a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.version-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dot-primary), var(--dot-secondary));
    box-shadow: 0 0 16px var(--dot-secondary);
}

.version-switcher a:hover {
    color: var(--text);
    background: var(--glass);
    border-color: var(--line);
}

.version-switcher a.is-active {
    color: white;
    border-color: color-mix(in srgb, var(--primary) 45%, transparent);
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 38%, #0a1020), color-mix(in srgb, var(--secondary) 28%, #0a1020));
    box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 18%, transparent);
}

main {
    width: min(var(--content-max), calc(100% - 48px));
    margin: 0 auto;
    padding: 56px 0 64px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
    background: var(--glass);
    backdrop-filter: blur(8px);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
    border-color: color-mix(in srgb, var(--primary) 40%, var(--line));
    background: var(--glass-strong);
}

.button:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

.button.primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 40%, var(--secondary)) 50%, var(--secondary) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 20px 48px color-mix(in srgb, var(--primary) 32%, transparent);
}

.button.primary:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 24px 56px color-mix(in srgb, var(--primary) 38%, transparent);
}

.button.secondary {
    color: #0a1020;
    border-color: transparent;
    background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 88%, white), color-mix(in srgb, var(--primary) 72%, var(--secondary)));
}

.button.secondary:hover {
    box-shadow: 0 16px 40px color-mix(in srgb, var(--secondary) 28%, transparent);
}

.version-picker--static {
    flex-direction: row;
    gap: 10px;
}

.version-link-bar {
    display: none;
}

.version-link-bar a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #c7d0e0;
    text-decoration: none;
}

.version-link-bar a.is-active {
    color: white;
    border-color: color-mix(in srgb, var(--primary) 50%, white 10%);
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 38%, transparent), color-mix(in srgb, var(--secondary) 28%, transparent));
}

.version-link-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.version-link-list a {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
}
.footer {
    width: min(var(--content-max), calc(100% - 48px));
    margin: 48px auto 0;
    padding: 36px 0 52px;
    border-top: 1px solid color-mix(in srgb, var(--primary) 20%, var(--line));
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px 32px;
    font-size: 0.88rem;
    line-height: 1.65;
}

.footer::before {
    content: "Genesis AI";
    display: block;
    width: 100%;
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--primary) 70%, var(--muted));
}

.footer p {
    margin: 0;
}

.footer a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--secondary) 35%, transparent);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

@media (max-width: 1020px) {

    .header-primary {

        grid-template-columns: minmax(0, 1fr) auto;

        grid-template-areas:

            "brand toggle"

            "nav nav"

            "toolbar toolbar";

    }



    .nav-toggle {

        display: grid !important;

        place-items: center;

    }



    .site-nav,

    .header-toolbar,

    .header-controls {

        display: none;

    }



    .site-nav.is-open,

    .header-toolbar.is-open,

    .header-controls.is-open {

        display: flex;

    }



    .header-toolbar.is-open,

    .header-controls.is-open {

        flex-direction: column;

        align-items: stretch;

        gap: 14px;

        padding: 12px;

        border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--line));

        border-radius: var(--radius-md);

        background: color-mix(in srgb, var(--bg) 82%, transparent);

    }



    .header-toolbar.is-open .header-toolbar-sep {

        width: 100%;

        height: 1px;

        min-height: 0;

        margin: 0;

    }



    .header-toolbar.is-open .site-switcher,
    .header-toolbar.is-open .version-switcher {

        flex-wrap: wrap;

        justify-content: stretch;

    }



    .header-toolbar.is-open .version-switcher a,
    .header-toolbar.is-open .site-switcher a {

        flex: 1 1 auto;

        justify-content: center;

    }



    .site-nav.is-open {

        flex-direction: column;

        align-items: stretch;

        border-radius: var(--radius-md);

        padding: 10px;

        overflow-x: visible;

    }



    .site-nav.is-open a {

        text-align: center;

        white-space: normal;

    }



    .version-picker {
        width: 100%;
    }

    .styled-select--version {
        max-width: none;
    }



    .breadcrumb-trail {

        margin-top: 0;

        flex-wrap: wrap;

        justify-content: center;

    }



    .styled-select--project {

        max-width: none;

    }

}



@media (max-width: 640px) {

    .header-inner,

    main,

    .footer {

        width: min(100% - 32px, var(--content-max));

    }



    main {

        padding-top: 32px;

        padding-bottom: 48px;

    }



    .brand-copy span {

        display: none;

    }



    .header-toolbar-sep {

        display: none;

    }

}



body * {
    letter-spacing: 0 !important;
}

body.site-lilith {
    --primary: #5f7dff;
    --secondary: #20e6d2;
    --bg: #07090f;
    --card: rgba(16, 22, 33, 0.86);
    --muted: #aeb9c8;
    --line: rgba(213, 225, 255, 0.13);
    --accent-warm: #f6c177;
    --accent-cool: #8bd5ff;
}

body.site-eve {
    --primary: #9a6cff;
    --secondary: #21d6b7;
    --bg: #0b0911;
    --card: rgba(24, 18, 33, 0.86);
    --muted: #c4bdd2;
    --line: rgba(238, 220, 255, 0.14);
    --accent-warm: #f0a6ca;
    --accent-cool: #73e2ff;
}

body.site-adam {
    --primary: #ffb000;
    --secondary: #58c4c7;
    --bg: #0d0d0b;
    --card: rgba(30, 29, 23, 0.88);
    --muted: #c3c0b4;
    --line: rgba(255, 238, 198, 0.16);
    --accent-warm: #ff6b4a;
    --accent-cool: #9fd4ff;
}

:root {
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --content-max: 1240px;
}

body {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), transparent 28%),
        linear-gradient(225deg, color-mix(in srgb, var(--secondary) 10%, transparent), transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 112px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 112px),
        var(--bg);
}

body::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: none;
    opacity: 0.52;
}

body::after {
    display: none;
}

body h1,
body h2,
body h3,
body h4 {
    letter-spacing: 0 !important;
}

body .site-header {
    border-bottom: 1px solid color-mix(in srgb, var(--primary) 18%, var(--line));
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg) 90%, black 10%), color-mix(in srgb, var(--bg) 86%, black 14%));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 12px 40px rgba(0, 0, 0, 0.28);
}

body .header-inner {
    gap: 10px;
    padding: 14px 0 16px;
}

body .brand {
    gap: 12px;
}

body .logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #071014;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 74%, white 26%), color-mix(in srgb, var(--secondary) 78%, white 22%));
    box-shadow: 0 14px 34px color-mix(in srgb, var(--primary) 22%, transparent);
}

body .brand-copy strong {
    font-size: 1rem;
}

body .brand-copy span {
    color: color-mix(in srgb, var(--muted) 84%, white 16%);
}

body .site-nav,
body .version-switcher,
body .site-switcher {
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg) 70%, transparent);
    border-color: color-mix(in srgb, var(--primary) 14%, var(--line));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body .site-nav a,
body .version-switcher a,
body .version-select,
body .styled-select-trigger {
    border-radius: 8px;
}

body .site-nav a.is-active,
body .version-switcher a.is-active {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 72%, #111111), color-mix(in srgb, var(--secondary) 58%, #111111));
    box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 20%, transparent);
}

body .breadcrumb-trail {
    border-radius: 8px;
    box-shadow: none;
}

body main {
    padding-top: 34px;
}

body .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: clamp(32px, 6vw, 92px);
    min-height: clamp(520px, 66vh, 700px);
    padding: 34px 0 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body .hero::before,
body .hero::after {
    display: none;
}

body .hero-content {
    max-width: 760px;
}

body .hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

body .hero-kicker span,
body .implementation-status-badge,
body .implementation-notice {
    border-radius: 8px;
}

body .hero-kicker span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid color-mix(in srgb, var(--secondary) 34%, var(--line));
    color: color-mix(in srgb, var(--secondary) 78%, white 22%);
    background: color-mix(in srgb, var(--secondary) 10%, transparent);
    font-size: 0.82rem;
    font-weight: 800;
}

body .hero h1,
body .page-hero h1 {
    max-width: 13ch;
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
    letter-spacing: 0 !important;
}

body .hero h1 {
    font-size: 4.9rem;
    line-height: 0.98;
}

body .hero-content > p,
body .page-hero > p {
    max-width: 660px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

body .hero-support {
    margin-top: 14px;
    padding-left: 14px;
    border-left: 2px solid color-mix(in srgb, var(--secondary) 70%, var(--primary));
    color: color-mix(in srgb, var(--text) 82%, var(--muted));
    font-size: 0.96rem;
}

body .hero-actions .button {
    min-width: 148px;
}

body .button {
    border-radius: 8px;
    min-height: 48px;
    box-shadow: none;
}

body .button.primary {
    color: #061014;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 74%, white 26%), color-mix(in srgb, var(--secondary) 74%, white 26%));
    box-shadow: 0 16px 34px color-mix(in srgb, var(--primary) 26%, transparent);
}

body .button.primary:hover {
    box-shadow: 0 18px 38px color-mix(in srgb, var(--primary) 32%, transparent);
}

body .hero-visual {
    position: relative;
    justify-self: stretch;
    min-height: 360px;
}

.terminal-window,
.swarm-field,
.control-stack {
    position: relative;
    height: 100%;
    min-height: 360px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        color-mix(in srgb, var(--card) 76%, black 24%);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    overflow: hidden;
}

.terminal-window {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.terminal-window::before,
.swarm-field::before,
.control-stack::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--primary) 18%, transparent), transparent 24% 76%, color-mix(in srgb, var(--secondary) 16%, transparent)),
        repeating-linear-gradient(0deg, transparent 0 35px, rgba(255, 255, 255, 0.05) 36px);
    opacity: 0.76;
    pointer-events: none;
}

.terminal-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.terminal-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--muted);
}

.terminal-top span:nth-child(1) {
    background: var(--accent-warm);
}

.terminal-top span:nth-child(2) {
    background: var(--secondary);
}

.terminal-top span:nth-child(3) {
    background: var(--primary);
}

.terminal-top strong {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.82rem;
}

.terminal-body {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 32px 24px 18px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.95rem;
}

.terminal-body p {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
    color: #e8f3ff;
}

.terminal-body span {
    color: var(--secondary);
    font-weight: 900;
}

.terminal-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 24px 24px;
}

.terminal-grid span {
    display: grid;
    place-items: center;
    min-height: 54px;
    border: 1px solid color-mix(in srgb, var(--secondary) 32%, var(--line));
    border-radius: 8px;
    color: var(--secondary);
    background: color-mix(in srgb, var(--secondary) 8%, transparent);
    font-weight: 800;
}

.swarm-field {
    display: grid;
    place-items: center;
}

.swarm-ring {
    position: absolute;
    border: 1px solid color-mix(in srgb, var(--secondary) 42%, var(--line));
    border-radius: 50%;
}

.ring-one {
    width: min(78%, 360px);
    aspect-ratio: 1;
}

.ring-two {
    width: min(52%, 250px);
    aspect-ratio: 1;
    border-color: color-mix(in srgb, var(--accent-warm) 52%, var(--line));
    transform: rotate(28deg) scaleX(1.22);
}

.swarm-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 94px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    background: color-mix(in srgb, var(--card) 82%, black 18%);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.node-core {
    min-width: 120px;
    min-height: 64px;
    color: #071014;
    background: linear-gradient(135deg, var(--accent-warm), var(--secondary));
}

.node-a { top: 16%; left: 11%; }
.node-b { top: 18%; right: 8%; }
.node-c { bottom: 18%; left: 7%; }
.node-d { bottom: 16%; right: 13%; }

.swarm-link {
    position: absolute;
    height: 1px;
    width: 46%;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0.78;
}

.link-a { transform: rotate(26deg); }
.link-b { transform: rotate(-28deg); }
.link-c { transform: rotate(90deg); width: 34%; }

.control-stack {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
}

.control-header,
.control-row,
.control-meter {
    position: relative;
    z-index: 1;
}

.control-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.86rem;
}

.control-header strong {
    color: var(--secondary);
}

.control-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.control-row span {
    color: var(--primary);
    font-weight: 900;
}

.control-row strong {
    color: #fff;
}

.control-row em {
    color: var(--muted);
    font-style: normal;
    font-size: 0.86rem;
}

.control-row.is-active {
    border-color: color-mix(in srgb, var(--primary) 52%, var(--line));
    background: color-mix(in srgb, var(--primary) 12%, transparent);
}

.control-meter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.control-meter span {
    height: 72px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--secondary) 74%, white 12%), color-mix(in srgb, var(--primary) 70%, black 10%));
}

.control-meter span:nth-child(2) { height: 108px; }
.control-meter span:nth-child(3) { height: 86px; }
.control-meter span:nth-child(4) { height: 132px; }

body .genesis-network {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) 1fr;
    gap: 22px;
    align-items: stretch;
    margin: 4px 0 76px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--primary) 8%, transparent), color-mix(in srgb, var(--secondary) 6%, transparent)),
        rgba(255, 255, 255, 0.028);
}

.network-intro {
    display: grid;
    align-content: center;
    gap: 8px;
}

.network-intro h2 {
    max-width: 12ch;
    font-size: 1.65rem;
    line-height: 1.1;
}

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

.network-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 88px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.network-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--dot-secondary) 48%, var(--line));
    background: rgba(255, 255, 255, 0.055);
}

.network-card.is-active {
    border-color: color-mix(in srgb, var(--dot-primary) 48%, var(--line));
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--dot-primary) 16%, transparent), color-mix(in srgb, var(--dot-secondary) 10%, transparent));
}

.network-card-index {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #071014;
    background: linear-gradient(135deg, var(--dot-primary), var(--dot-secondary));
    font-weight: 900;
}

.network-card-copy strong,
.network-card-copy span {
    display: block;
}

.network-card-copy strong {
    font-family: var(--font-display);
    font-size: 1rem;
}

.network-card-copy span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

body .section {
    margin-top: 76px;
}

body .section-kicker {
    border-radius: 8px;
}

body .section h2,
body .page-hero h1 {
    font-size: 3.2rem;
    line-height: 1.06;
}

body .card {
    min-height: 210px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
        color-mix(in srgb, var(--card) 82%, black 18%);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

body .card::before {
    background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 16%, transparent), transparent 52%);
    opacity: 0.72;
}

body .card:hover {
    transform: translateY(-4px);
}

body .card-meta {
    border-radius: 8px;
}

body .page-hero {
    display: grid;
    gap: 14px;
    min-height: 290px;
    align-content: center;
    border-radius: 8px;
    border-color: var(--line);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

body .page-hero::after {
    display: none;
}

body .story {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
    align-items: start;
}

body .story-panel,
body .mini-stat,
body .release-card,
body .release-description-box,
body .tools-panel,
body .test-specs-panel,
body .downloads-panel,
body .projects-panel,
body .test-scenario-panel,
body .test-transcript-panel {
    border-radius: 8px;
}

body .story-panel {
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.site-lilith [data-home-features-grid] .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-lilith .page-hero {
    border-left: 4px solid var(--secondary);
}

.site-eve .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
    justify-items: stretch;
    text-align: left;
    min-height: 650px;
}

.site-eve .hero-content {
    max-width: 720px;
}

.site-eve .hero h1,
.site-eve .page-hero h1 {
    max-width: 13ch;
}

.site-eve .hero h1 {
    font-size: 4.2rem;
}

.site-eve .hero-content > p,
.site-eve .page-hero > p,
.site-eve .hero-support {
    margin-left: 0;
    margin-right: 0;
}

.site-eve .hero-support {
    max-width: 600px;
}

.site-eve .hero-visual {
    width: min(100%, 560px);
    min-height: 330px;
    align-self: center;
}

.site-eve [data-home-features-grid] .grid {
    grid-template-columns: 1.12fr 0.88fr;
}

.site-eve [data-home-features-grid] .card:first-child {
    grid-row: span 2;
    min-height: 440px;
}

.site-eve .page-hero {
    justify-items: center;
    text-align: center;
}

.site-eve .story {
    grid-template-columns: 1fr;
}

.site-eve .mini-stats {
    grid-template-columns: repeat(3, 1fr);
}

.site-adam .hero {
    grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
}

.site-adam .hero-visual {
    order: -1;
}

.site-adam .hero h1,
.site-adam .page-hero h1 {
    max-width: 18ch;
}

.site-adam .hero h1 {
    font-size: 3.65rem;
}

.site-adam [data-home-features-grid] .grid {
    grid-template-columns: 1fr;
    max-width: 980px;
}

.site-adam [data-home-features-grid] .card {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 22px;
    min-height: 0;
}

.site-adam [data-home-features-grid] .card::after {
    top: 24px;
    left: 28px;
    right: auto;
    width: 28px;
    height: 28px;
    border: 1px solid color-mix(in srgb, var(--primary) 58%, var(--line));
    border-radius: 8px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 52%, transparent), color-mix(in srgb, var(--secondary) 24%, transparent));
}

.site-adam .page-hero {
    border-left: 6px solid var(--primary);
}

@media (max-width: 1100px) {
    body .hero h1 {
        font-size: 4.05rem;
    }

    body .section h2,
    body .page-hero h1 {
        font-size: 2.65rem;
    }

    body .genesis-network,
    .network-grid,
    .site-eve [data-home-features-grid] .grid,
    .site-eve .mini-stats {
        grid-template-columns: 1fr;
    }

    .site-eve [data-home-features-grid] .card:first-child {
        grid-row: auto;
        min-height: 240px;
    }
}

@media (max-width: 1020px) {
    body .hero,
    .site-eve .hero,
    .site-adam .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 28px;
    }

    .site-adam .hero-visual {
        order: 0;
    }

    body .hero-visual {
        min-height: 300px;
    }

    .terminal-window,
    .swarm-field,
    .control-stack {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    body main {
        padding-top: 24px;
    }

    body .hero {
        gap: 16px;
        padding-bottom: 14px;
    }

    body .hero-kicker {
        gap: 6px;
        margin-bottom: 12px;
    }

    body .hero-kicker span {
        min-height: 28px;
        padding: 0 10px;
        font-size: 0.74rem;
    }

    body .hero h1 {
        font-size: 2.35rem;
        line-height: 1.04;
    }

    .site-eve .hero h1 {
        font-size: 2.08rem;
    }

    .site-adam .hero h1 {
        font-size: 1.9rem;
    }

    body .hero-content > p {
        font-size: 0.96rem;
        line-height: 1.58;
    }

    body .hero-support {
        display: none;
    }

    body .section h2,
    body .page-hero h1 {
        font-size: 2.15rem;
    }

    body .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
    }

    body .hero-actions .button {
        width: 100%;
        min-height: 40px;
        padding-inline: 10px;
    }

    body .implementation-status-badge,
    body .implementation-notice {
        margin-top: 12px;
        padding: 7px 10px;
        font-size: 0.74rem;
    }

    body .hero-visual {
        width: 100%;
        min-height: 158px;
        max-height: 158px;
        overflow: hidden;
    }

    .site-eve .hero-visual {
        width: 100%;
        min-height: 158px;
        max-height: 158px;
    }

    .terminal-window,
    .swarm-field,
    .control-stack {
        min-height: 158px;
    }

    .terminal-grid {
        display: none;
    }

    .terminal-body {
        padding: 18px;
        gap: 10px;
        font-size: 0.78rem;
    }

    .terminal-body p:nth-child(3) {
        display: none;
    }

    .swarm-node {
        min-width: 76px;
        min-height: 36px;
        font-size: 0.72rem;
    }

    .node-a { top: 10%; left: 4%; }
    .node-b { top: 12%; right: 4%; }
    .node-c { bottom: 13%; left: 4%; }
    .node-d { bottom: 12%; right: 5%; }

    .control-row {
        grid-template-columns: 32px 1fr;
        padding: 10px 12px;
    }

    .control-row em {
        grid-column: 2;
    }

    .control-meter {
        display: none;
    }

    .network-card,
    .site-adam [data-home-features-grid] .card {
        grid-template-columns: 1fr;
    }

    body .genesis-network {
        margin-bottom: 54px;
        padding: 16px;
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--primary) 42%, #4a5568) color-mix(in srgb, var(--bg) 88%, #0a0e18);
}

*::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

*::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--bg) 90%, #060a14);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--primary) 55%, #3d4a63),
        color-mix(in srgb, var(--secondary) 45%, #2d3548)
    );
    border: 2px solid color-mix(in srgb, var(--bg) 90%, #060a14);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--primary) 70%, #4d5e7a),
        color-mix(in srgb, var(--secondary) 58%, #3a455c)
    );
}

*::-webkit-scrollbar-corner {
    background: color-mix(in srgb, var(--bg) 90%, #060a14);
}