:root {
    --canvas-base: 255 255 255;
    --canvas-raised: 250 250 250;
    --canvas-sunken: 244 244 245;
    --canvas-overlay: 255 255 255;

    --ink-primary: 9 9 11;
    --ink-secondary: 39 39 42;
    --ink-muted: 82 82 91;
    --ink-faint: 113 113 122;

    --outline-subtle: 228 228 231;
    --outline-default: 212 212 216;
    --outline-strong: 161 161 170;
}

.dark {
    --canvas-base: 1 6 23;
    --canvas-raised: 9 9 11;
    --canvas-sunken: 24 24 27;
    --canvas-overlay: 15 15 18;

    --ink-primary: 250 250 250;
    --ink-secondary: 228 228 231;
    --ink-muted: 161 161 170;
    --ink-faint: 113 113 122;

    --outline-subtle: 39 39 42;
    --outline-default: 63 63 70;
    --outline-strong: 82 82 91;
}

[data-header] {
    transition:
        transform 300ms ease-out,
        background-color 300ms ease-out,
        backdrop-filter 300ms ease-out,
        -webkit-backdrop-filter 300ms ease-out;
}

html {
    scroll-behavior: smooth;
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

[data-header].is-scrolled {
    background-color: rgb(var(--canvas-base) / 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgb(var(--outline-subtle) / 0.6);
}

.nav-link {
    position: relative;
    color: rgb(var(--ink-muted));
    transition: color 220ms ease;
    text-decoration: none;
    font-weight: 500;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover {
    color: rgb(var(--ink-primary));
}

.nav-link.is-active {
    color: rgb(var(--ink-primary));
}

.nav-link.is-active::after {
    transform: scaleX(1);
}

@property --cta-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.cta-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(180deg, rgba(39, 39, 42, 1), rgba(9, 9, 11, 1));
    color: #fafafa;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.6);
    -webkit-appearance: none;
    appearance: none;
}

.cta-pill--block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.cta-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(
        from var(--cta-angle),
        transparent 0%,
        transparent 70%,
        rgba(95, 118, 146, 0.95) 82%,
        rgba(167, 139, 250, 0.85) 92%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    animation: cta-border-spin 4s linear infinite;
}

@keyframes cta-border-spin {
    to { --cta-angle: 360deg; }
}

.cta-pill::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.32), rgba(167, 139, 250, 0.15) 40%, transparent 65%);
    filter: blur(22px);
    opacity: 0.5;
    z-index: -1;
    animation: cta-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.85; }
}

.cta-pill__shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.18) 50%, transparent 62%);
    transform: translateX(-110%);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1;
}

.cta-pill > span,
.cta-pill > svg,
.cta-pill > i {
    position: relative;
    z-index: 3;
}

.cta-pill__arrow {
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-pill:hover {
    transform: translateY(-2px);
}

.cta-pill:hover .cta-pill__shine {
    transform: translateX(110%);
}

.cta-pill:hover .cta-pill__arrow {
    transform: translateX(4px);
}

.cta-pill:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 4px;
}

.cta-pill--sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.875rem;
    gap: 0.5rem;
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.55);
}

.cta-pill--sm::after {
    inset: -10px;
    filter: blur(14px);
}

.cta-pill--sm:hover {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cta-pill,
    .cta-pill__shine,
    .cta-pill__arrow {
        transition: none;
    }

    .cta-pill::before,
    .cta-pill::after {
        animation: none;
    }

    .cta-pill:hover {
        transform: none;
    }

    .icon-btn {
        transition: none;
    }

    .icon-btn:hover {
        transform: none;
    }

    .icon-btn:hover .icon-btn__ring {
        animation: none;
    }
}

@property --icon-btn-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgb(var(--outline-default) / 0.8);
    border-radius: 9999px;
    background: rgb(var(--canvas-raised));
    color: rgb(var(--ink-secondary));
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    isolation: isolate;
    -webkit-appearance: none;
    appearance: none;
    transition:
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.dark .icon-btn {
    background: linear-gradient(180deg, rgba(39, 39, 42, 0.85), rgba(9, 9, 11, 0.95));
    color: rgba(228, 228, 231, 0.92);
}

.icon-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.dark .icon-btn::before {
    opacity: 1;
}

.icon-btn__ring {
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
    background: conic-gradient(
        from var(--icon-btn-angle),
        transparent 0%,
        transparent 60%,
        rgba(96, 165, 250, 0.85) 78%,
        rgba(167, 139, 250, 0.85) 92%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1.5px;
    opacity: 0;
    transition: opacity 280ms ease;
}

.icon-btn__icon {
    position: relative;
    z-index: 2;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.icon-btn:hover {
    transform: translateY(-2px);
    color: rgb(var(--ink-primary));
    border-color: rgba(96, 165, 250, 0.55);
    background: rgb(var(--canvas-sunken));
    box-shadow: 0 12px 28px -16px rgba(96, 165, 250, 0.55);
}

.dark .icon-btn:hover {
    color: #fafafa;
    background: linear-gradient(180deg, rgba(39, 39, 42, 1), rgba(15, 15, 18, 1));
}

.icon-btn:hover .icon-btn__ring {
    opacity: 1;
    animation: icon-btn-ring 3.2s linear infinite;
}

.icon-btn:hover .icon-btn__icon {
    transform: scale(1.08);
}

.icon-btn:active {
    transform: translateY(0);
}

.icon-btn:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 3px;
}

.icon-btn--sm {
    width: 2rem;
    height: 2rem;
}

.icon-btn--lg {
    width: 3rem;
    height: 3rem;
}

@keyframes icon-btn-ring {
    to { --icon-btn-angle: 360deg; }
}

@font-face {
    font-family: 'Geist Fallback';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    size-adjust: 107%;
    ascent-override: 90%;
    descent-override: 22.5%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Geist Mono Fallback';
    src: local('Menlo'), local('Consolas'), local('Courier New'), local('monospace');
    size-adjust: 95%;
    ascent-override: 84%;
    descent-override: 25%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/geist-latin-400.61cc095d4fd4.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/geist-latin-ext-400.092619a0d46b.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/geist-latin-500.68aa70cc2056.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/geist-latin-ext-500.cd3fa04b50a2.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/geist-latin-600.942998b91f1c.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/geist-latin-ext-600.525b7f18a4d2.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/geist-latin-700.b16e7527e9a3.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/geist-latin-ext-700.1abb812e0881.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/geist-mono-latin-400.aedf2d1c7257.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/geist-mono-latin-ext-400.1bcab2915f04.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/geist-mono-latin-500.7bf7a1dfc74d.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/geist-mono-latin-ext-500.5cfb8c4b7974.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/geist-mono-latin-600.47084295b4b7.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/geist-mono-latin-ext-600.74fddb52acb3.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

.is-hidden {
    display: none !important;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.ui-textarea {
    display: block;
    width: 100%;
    min-height: 6rem;
    padding: 0.6rem 0.75rem;
    font-family: inherit;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgb(var(--ink-primary));
    background-color: rgb(var(--canvas-sunken));
    border: 1px solid rgb(var(--outline-default));
    border-radius: 0.5rem;
    outline: none;
    resize: vertical;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--outline-strong) / 0.7) transparent;
}

.ui-textarea::placeholder {
    color: rgb(var(--ink-faint));
}

.ui-textarea:hover {
    border-color: rgb(var(--outline-strong));
}

.ui-textarea:focus-visible {
    border-color: rgba(96, 165, 250, 0.7);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}

.ui-textarea::-webkit-scrollbar {
    width: 8px;
}

.ui-textarea::-webkit-scrollbar-track {
    background: transparent;
    margin: 4px 0;
}

.ui-textarea::-webkit-scrollbar-thumb {
    background-color: rgb(var(--outline-strong) / 0.6);
    border-radius: 9999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.ui-textarea::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--ink-faint) / 0.85);
    background-clip: padding-box;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.modal[hidden] {
    display: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
    opacity: 0;
    animation: modal-backdrop-in 200ms ease forwards;
}

.modal__dialog {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    background: rgb(var(--canvas-raised));
    border: 1px solid rgb(var(--outline-default));
    border-radius: 0.75rem;
    pointer-events: auto;
    box-shadow: 0 24px 80px -32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: scale(0.96);
    opacity: 0;
    animation: modal-dialog-in 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgb(var(--outline-subtle));
    flex-shrink: 0;
}

.modal__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(var(--ink-primary));
}

.modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: rgb(var(--ink-muted));
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
}

.modal__close:hover {
    color: rgb(var(--ink-primary));
    background: rgb(var(--canvas-sunken));
}

.modal__body {
    padding: 0.5em 1em 1em 1em;
    overflow-y: auto;
    flex: 1;
}

@keyframes modal-backdrop-in {
    to { opacity: 1; }
}

@keyframes modal-dialog-in {
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 540px) {
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    .modal__dialog {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 0.75rem 0.75rem 0 0;
        border-bottom: none;
    }
}

.async-btn.is-loading .async-btn__label {
    display: none;
}

.async-btn.is-loading .async-btn__spinner {
    display: inline-flex;
}


.ui-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ui-field__helper {
    margin: 0;
    font-size: 0.75rem;
    color: rgb(var(--ink-faint));
}

.ui-field__helper--error {
    color: rgba(248, 113, 113, 1);
}

.ui-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(var(--ink-secondary));
    line-height: 1;
}

.ui-label__required {
    color: rgb(37, 99, 235);
}

.dark .ui-label__required {
    color: rgba(96, 165, 250, 1);
}

.ui-label__hint {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgb(var(--ink-faint));
}

.ui-input {
    display: flex;
    width: 100%;
    height: 2.25rem;
    padding: 0 0.75rem;
    font-family: inherit;
    font-size: 0.8125rem;
    color: rgb(var(--ink-primary));
    background-color: rgb(var(--canvas-sunken));
    border: 1px solid rgb(var(--outline-default));
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ui-input::placeholder {
    color: rgb(var(--ink-faint));
}

.ui-input:hover {
    border-color: rgb(var(--outline-strong));
}

.ui-input:focus-visible {
    border-color: rgba(96, 165, 250, 0.7);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}

.ui-select {
    position: relative;
    width: 100%;
}

.ui-select__trigger {
    display: flex;
    width: 100%;
    height: 2.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.75rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgb(var(--ink-primary));
    background-color: rgb(var(--canvas-sunken));
    border: 1px solid rgb(var(--outline-default));
    border-radius: 0.5rem;
    cursor: pointer;
    outline: none;
    text-align: left;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ui-select__trigger:hover {
    border-color: rgb(var(--outline-strong));
}

.ui-select__trigger:focus-visible,
.ui-select.is-open .ui-select__trigger {
    border-color: rgba(96, 165, 250, 0.7);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}

.ui-select__value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-select__value--placeholder {
    color: rgb(var(--ink-faint));
}

.ui-select__icon {
    flex-shrink: 0;
    color: rgb(var(--ink-muted));
    transition: transform 180ms ease;
}

.ui-select.is-open .ui-select__icon {
    transform: rotate(180deg);
}

.ui-select__content {
    position: absolute;
    top: calc(100% + 0.375rem);
    left: 0;
    right: 0;
    z-index: 50;
    list-style: none;
    margin: 0;
    padding: 0.25rem;
    background-color: rgb(var(--canvas-overlay) / 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgb(var(--outline-default));
    border-radius: 0.5rem;
    box-shadow: 0 16px 48px -16px rgba(0, 0, 0, 0.18);
    max-height: 16rem;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--outline-strong) / 0.7) transparent;
}

.dark .ui-select__content {
    box-shadow: 0 16px 48px -16px rgba(0, 0, 0, 0.7);
}

.ui-select__content::-webkit-scrollbar {
    width: 8px;
}

.ui-select__content::-webkit-scrollbar-track {
    background: transparent;
    margin: 4px 0;
}

.ui-select__content::-webkit-scrollbar-thumb {
    background-color: rgb(var(--outline-strong) / 0.6);
    border-radius: 9999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.ui-select__content::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--ink-faint) / 0.85);
    background-clip: padding-box;
}

.ui-select.is-open .ui-select__content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ui-select__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.625rem;
    font-size: 0.875rem;
    color: rgb(var(--ink-secondary));
    border-radius: 0.375rem;
    cursor: pointer;
    outline: none;
    transition: background-color 120ms ease;
}

.ui-select__item:hover,
.ui-select__item:focus-visible {
    background-color: rgb(var(--canvas-sunken));
}

.ui-select__check {
    color: rgb(37, 99, 235);
    opacity: 0;
    flex-shrink: 0;
}

.dark .ui-select__check {
    color: rgba(96, 165, 250, 1);
}

.ui-select__item[aria-selected="true"] .ui-select__check {
    opacity: 1;
}
