:root {
    --bg: #07111f;
    --bg-2: #0f1f35;
    --bg-3: #152844;
    --card: rgba(15, 27, 46, 0.86);
    --card-strong: rgba(19, 35, 58, 0.98);
    --line: rgba(255,255,255,0.08);
    --text: #f5f7ff;
    --muted: #92a7c6;
    --accent: #3ce1b7;
    --accent-2: #7a8cff;
    --accent-3: #ff8a5b;
    --warning: #ffbf47;
    --danger: #ff647c;
    --success: #35d39a;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 26px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(60, 225, 183, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(122, 140, 255, 0.18), transparent 25%),
        radial-gradient(circle at bottom center, rgba(255, 138, 91, 0.16), transparent 25%),
        linear-gradient(145deg, #040b15 0%, #081423 34%, #0f1f35 100%);
}

a { color: inherit; text-decoration: none; }
small, .muted { color: var(--muted); }
h1, h2, h3, h4, p { margin-top: 0; }

.page-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 100vh;
}

.rail {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px 18px;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(5, 14, 27, 0.92), rgba(10, 22, 41, 0.72));
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(122, 140, 255, 0.14), rgba(60, 225, 183, 0.1));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.brand strong {
    display: block;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
}

.brand small {
    display: block;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
    box-shadow: 0 12px 30px rgba(122, 140, 255, 0.35);
}

.nav-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-link {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    color: var(--muted);
    transition: 160ms ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--text);
    border-color: rgba(122, 140, 255, 0.22);
    background: rgba(255,255,255,0.03);
    transform: translateX(4px);
}

.rail-panel {
    margin-top: 28px;
    padding: 18px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex: 0 0 12px;
    background: var(--success);
    box-shadow: 0 0 18px var(--success);
}

.portal-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(60, 225, 183, 0.24);
    background: linear-gradient(135deg, rgba(15, 42, 37, 0.9), rgba(14, 32, 54, 0.9));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.portal-ribbon strong {
    font-size: 0.98rem;
}

.portal-ribbon small {
    color: var(--muted);
}

.portal-ribbon.offline {
    border-color: rgba(255, 100, 124, 0.3);
    background: linear-gradient(135deg, rgba(61, 19, 28, 0.92), rgba(31, 18, 39, 0.92));
}

.status-dot.offline {
    background: var(--danger);
    box-shadow: 0 0 18px var(--danger);
}

.main-shell {
    padding: 104px 24px 40px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 290px;
    right: 0;
    z-index: 60;
    display: block;
    margin: 0;
    padding: 18px 24px 14px;
    background: linear-gradient(180deg, rgba(5, 14, 27, 0.98), rgba(5, 14, 27, 0.9));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.page-heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eyebrow, .kicker {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
}

.topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-pill, .lang-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
}

.profile-pill {
    display: flex;
    gap: 10px;
    align-items: center;
}

.button {
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), #55f4cf);
    color: #03231b;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(60, 225, 183, 0.24);
}

.button.subtle {
    background: linear-gradient(135deg, rgba(122, 140, 255, 0.16), rgba(122, 140, 255, 0.08));
    color: var(--text);
    border: 1px solid rgba(122, 140, 255, 0.25);
    box-shadow: none;
}

.button.wide { width: 100%; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pulse { animation: pulse 2.1s infinite; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(60,225,183,.35); }
    70% { box-shadow: 0 0 0 16px rgba(60,225,183,0); }
    100% { box-shadow: 0 0 0 0 rgba(60,225,183,0); }
}

.card {
    background: linear-gradient(180deg, rgba(17, 31, 52, 0.86), rgba(13, 24, 40, 0.9));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-banner {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at top right, rgba(255, 138, 91, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(122, 140, 255, 0.18), rgba(60, 225, 183, 0.1));
    box-shadow: var(--shadow);
}

.stats-cloud {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cloud-card, .mini-panel {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.cloud-card {
    padding: 18px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cloud-card strong {
    font-size: 2rem;
    line-height: 1;
}

.grid.two-one {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 18px;
}

.stack-gap {
    display: grid;
    gap: 18px;
}

.mini-panel {
    padding: 22px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.list-stack {
    display: grid;
    gap: 12px;
}

.request-tile, .notice-card {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.notice-card {
    flex-direction: column;
}

.notice-card.unread {
    border-color: rgba(60,225,183,0.36);
    background: rgba(60,225,183,0.08);
}

.right-align { text-align: right; }

.flash-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.flash {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.flash.success { background: rgba(53,211,154,.12); border-color: rgba(53,211,154,.4); }
.flash.info { background: rgba(122,140,255,.12); border-color: rgba(122,140,255,.32); }
.flash.warning { background: rgba(255,191,71,.12); border-color: rgba(255,191,71,.32); }
.flash.danger { background: rgba(255,100,124,.14); border-color: rgba(255,100,124,.34); }

.auth-grid {
    min-height: calc(100vh - 140px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: center;
}

.hero-panel {
    position: relative;
    padding: 34px;
    min-height: 420px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 20%, rgba(60, 225, 183, 0.18), transparent 24%),
        radial-gradient(circle at 78% 22%, rgba(122, 140, 255, 0.2), transparent 20%),
        linear-gradient(180deg, rgba(13, 24, 40, 0.88), rgba(15, 31, 53, 0.94));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-panel h2 { font-size: clamp(2rem, 4vw, 4rem); max-width: 10ch; }
.hero-panel p { max-width: 52ch; color: #bfd2ef; }
.hero-orbs span {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
}
.hero-orbs span:nth-child(1){ width:170px;height:170px;background:rgba(60,225,183,.18);bottom:22px;left:24px; }
.hero-orbs span:nth-child(2){ width:120px;height:120px;background:rgba(122,140,255,.26);right:90px;top:80px; }
.hero-orbs span:nth-child(3){ width:90px;height:90px;background:rgba(255,138,91,.2);right:32px;bottom:42px; }

.auth-card { max-width: 520px; width: 100%; justify-self: end; }
.auth-card label,
.field-grid label,
.card label {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    color: #d5e4ff;
    font-weight: 600;
}

input, textarea, select {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(7, 17, 31, 0.72);
    color: var(--text);
    padding: 14px 16px;
    border-radius: 16px;
    outline: none;
}

input:focus, textarea:focus, select:focus {
    border-color: rgba(60,225,183,0.48);
    box-shadow: 0 0 0 4px rgba(60,225,183,0.12);
}

.hint-box {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(122,140,255,0.12);
    color: #dbe4ff;
}

.wizard-layout {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 18px;
    align-items: start;
}

.sticky-stack {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 18px;
    align-items: start;
}

.upload-drop {
    min-height: 320px;
    border-radius: 28px;
    border: 1.5px dashed rgba(122, 140, 255, 0.35);
    background: linear-gradient(180deg, rgba(122,140,255,.08), rgba(60,225,183,.05));
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px;
}

.upload-drop input[type="file"] {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.upload-drop { position: relative; overflow: hidden; }
.upload-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    font-size: 1.8rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
}

.choice-grid, .service-grid, .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.choice-tile, .service-pill, .service-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.choice-tile input, .service-pill input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.action-card {
    background:
        radial-gradient(circle at top right, rgba(60,225,183,0.15), transparent 36%),
        linear-gradient(180deg, rgba(14,28,46,0.96), rgba(9,19,33,0.94));
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: capitalize;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.status-chip.queued { color: #d1def6; }
.status-chip.processing { color: #8edcff; border-color: rgba(142,220,255,0.34); }
.status-chip.manual-review,
.status-chip.manual_review { color: var(--warning); border-color: rgba(255,191,71,0.34); }
.status-chip.available,
.status-chip.completed { color: var(--success); border-color: rgba(53,211,154,0.34); }

.detail-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 18px;
    align-items: start;
}

.focus-card {
    position: relative;
    overflow: hidden;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.meta-grid.single {
    grid-template-columns: 1fr;
}

.meta-grid div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.meta-grid small {
    display: block;
    margin-bottom: 8px;
}

.processing-panel {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 24px;
    margin-bottom: 18px;
    background: rgba(122,140,255,0.1);
    border: 1px solid rgba(122,140,255,0.18);
}

.loader-ring {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 6px solid rgba(255,255,255,0.08);
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none; }

.info-banner {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 18px;
}
.info-banner.success { border-color: rgba(53,211,154,0.34); background: rgba(53,211,154,0.1); }
.info-banner.warning { border-color: rgba(255,191,71,0.3); background: rgba(255,191,71,0.08); }

.message-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
    max-height: 420px;
    overflow: auto;
}

.message-bubble {
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.message-bubble.user {
    background: rgba(122,140,255,0.12);
}

.message-bubble.admin {
    background: rgba(60,225,183,0.1);
}

.message-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
    vertical-align: top;
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.user-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.clean-list {
    margin: 0;
    padding-left: 18px;
    color: #d9e7ff;
}

.big-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--accent);
}

.spotlight-card {
    padding: 30px;
    min-height: 260px;
    background:
        radial-gradient(circle at top right, rgba(122,140,255,0.24), transparent 28%),
        linear-gradient(180deg, rgba(16,31,53,.94), rgba(10,20,35,.96));
}

.empty-state {
    padding: 34px 20px;
    text-align: center;
    color: var(--muted);
    border-radius: 22px;
    border: 1px dashed rgba(255,255,255,0.12);
}

.empty-state.small { padding: 18px; }

.theme-admin {
    background:
        radial-gradient(circle at top left, rgba(255, 138, 91, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(60, 225, 183, 0.14), transparent 24%),
        linear-gradient(145deg, #0b0b17 0%, #151126 40%, #1a243d 100%);
}

.admin-hero {
    background:
        radial-gradient(circle at top left, rgba(255, 138, 91, 0.22), transparent 26%),
        linear-gradient(135deg, rgba(255, 138, 91, 0.16), rgba(122,140,255,0.12));
}

@media (max-width: 1180px) {
    .page-shell,
    .wizard-layout,
    .detail-grid,
    .grid.two-one,
    .auth-grid,
    .hero-banner,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .rail {
        position: static;
        height: auto;
    }

    .page-shell {
        grid-template-columns: 1fr;
    }

    .sticky-stack {
        position: static;
    }

    .user-grid,
    .field-grid,
    .meta-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        justify-self: stretch;
        max-width: none;
    }
}


.auth-body {
    overflow-x: hidden;
}

.auth-shell {
    grid-template-columns: minmax(0, 1fr);
}

.main-shell-auth {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 100vh;
    display: grid;
    align-content: center;
    padding: 24px 0 40px;
}

.topbar-auth {
    margin-bottom: 28px;
}

.auth-grid {
    min-height: auto;
}

@media (max-width: 980px) {
    .main-shell-auth {
        width: min(100%, calc(100% - 24px));
        padding: 18px 0 28px;
        align-content: start;
    }

    .topbar-auth {
        margin-bottom: 18px;
    }

    .auth-grid {
        min-height: auto;
    }
}


.auth-grid {
    min-height: calc(100vh - 140px);
    width: min(1160px, 100%);
    margin: 0 auto;
}
.auth-card,
.hero-panel {
    width: 100%;
    max-width: 520px;
    justify-self: center;
}


.submit-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(3, 8, 18, 0.72);
    backdrop-filter: blur(8px);
}

.submit-overlay.hidden {
    display: none;
}

.submit-overlay-card {
    width: min(92vw, 460px);
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(14, 25, 44, 0.97), rgba(10, 18, 32, 0.97));
    box-shadow: var(--shadow);
    text-align: center;
}

.loader-orbit {
    position: relative;
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
}

.loader-orbit span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 3px solid transparent;
    animation: orbit-spin 1.15s linear infinite;
}

.loader-orbit span:nth-child(1) {
    border-top-color: var(--accent);
}

.loader-orbit span:nth-child(2) {
    inset: 8px;
    border-right-color: var(--accent-2);
    animation-direction: reverse;
    animation-duration: 1.5s;
}

.loader-orbit span:nth-child(3) {
    inset: 18px;
    border-bottom-color: var(--accent-3);
    animation-duration: 0.85s;
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.section-head.compact {
    align-items: center;
    margin-bottom: 18px;
}

.section-copy {
    margin: 8px 0 0;
    color: #a9bbd8;
    max-width: 38ch;
}

.soft-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #d8e6ff;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.stage-card,
.services-card {
    background:
        radial-gradient(circle at top right, rgba(122, 140, 255, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(24, 40, 66, 0.96), rgba(14, 24, 40, 0.98));
}

.stage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.stage-tile,
.service-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.stage-tile {
    align-items: flex-start;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

.stage-tile input,
.service-card input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.choice-content,
.service-card-body {
    display: flex;
    gap: 14px;
    width: 100%;
}

.choice-content {
    flex-direction: column;
    padding: 18px;
}

.choice-content strong,
.service-copy strong {
    display: block;
    font-size: 1rem;
    color: #f8fbff;
}

.choice-content small,
.service-copy small {
    display: block;
    margin-top: 6px;
    color: #9ab0cf;
    line-height: 1.45;
}

.stage-tile:hover,
.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 18px 40px rgba(8, 18, 34, 0.28);
}

.stage-tile:has(input:checked) {
    border-color: rgba(97, 244, 212, 0.65);
    background:
        radial-gradient(circle at top right, rgba(97, 244, 212, 0.16), transparent 48%),
        linear-gradient(180deg, rgba(26, 58, 70, 0.96), rgba(17, 32, 44, 0.96));
    box-shadow: 0 18px 36px rgba(60, 225, 183, 0.18);
}

.modern-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    min-height: 118px;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card-body {
    align-items: flex-start;
    padding: 16px;
}

.service-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    color: #18314f;
    font-size: 1.4rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.service-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-card:has(input:checked) {
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 20px 42px rgba(12, 23, 38, 0.34);
}

.service-card:has(input:checked) .service-icon {
    transform: scale(1.04);
}

.service-card[data-service="dpf"] {
    background: linear-gradient(135deg, rgba(126, 231, 255, 0.3), rgba(79, 142, 255, 0.16));
}
.service-card[data-service="egr"] {
    background: linear-gradient(135deg, rgba(110, 255, 223, 0.3), rgba(61, 200, 166, 0.16));
}
.service-card[data-service="adblue"] {
    background: linear-gradient(135deg, rgba(120, 211, 255, 0.28), rgba(69, 126, 255, 0.16));
}
.service-card[data-service="lambda"] {
    background: linear-gradient(135deg, rgba(243, 188, 255, 0.28), rgba(149, 112, 255, 0.16));
}
.service-card[data-service="maf"] {
    background: linear-gradient(135deg, rgba(255, 226, 143, 0.28), rgba(255, 162, 92, 0.16));
}
.service-card[data-service="swirl-flaps"],
.service-card[data-service="tva"],
.service-card[data-service="exhaust-flaps"] {
    background: linear-gradient(135deg, rgba(255, 202, 135, 0.24), rgba(255, 130, 112, 0.16));
}
.service-card[data-service="start-stop"],
.service-card[data-service="speed-limit"],
.service-card[data-service="hard-cut"],
.service-card[data-service="hot-start"],
.service-card[data-service="launch-control"],
.service-card[data-service="pop-and-bang"] {
    background: linear-gradient(135deg, rgba(255, 170, 122, 0.3), rgba(255, 110, 133, 0.16));
}
.service-card[data-service="immo-off"],
.service-card[data-service="torque-monitoring"],
.service-card[data-service="water-pump"],
.service-card[data-service="sport-displays-calibration"],
.service-card[data-service="evap"],
.service-card[data-service="oil-pressure-fix"],
.service-card[data-service="opf-gpf"],
.service-card[data-service="auto-stage"] {
    background: linear-gradient(135deg, rgba(176, 199, 255, 0.28), rgba(109, 133, 255, 0.16));
}

.service-card:has(input:checked)[data-service="dpf"] {
    background: linear-gradient(135deg, rgba(146, 240, 255, 0.42), rgba(90, 157, 255, 0.28));
}
.service-card:has(input:checked)[data-service="egr"] {
    background: linear-gradient(135deg, rgba(122, 255, 228, 0.42), rgba(70, 210, 174, 0.28));
}
.service-card:has(input:checked)[data-service="adblue"] {
    background: linear-gradient(135deg, rgba(136, 220, 255, 0.42), rgba(84, 141, 255, 0.28));
}
.service-card:has(input:checked)[data-service="lambda"] {
    background: linear-gradient(135deg, rgba(245, 205, 255, 0.4), rgba(164, 127, 255, 0.28));
}
.service-card:has(input:checked)[data-service="maf"] {
    background: linear-gradient(135deg, rgba(255, 232, 164, 0.42), rgba(255, 178, 104, 0.28));
}
.service-card:has(input:checked)[data-service="swirl-flaps"],
.service-card:has(input:checked)[data-service="tva"],
.service-card:has(input:checked)[data-service="exhaust-flaps"],
.service-card:has(input:checked)[data-service="start-stop"],
.service-card:has(input:checked)[data-service="speed-limit"],
.service-card:has(input:checked)[data-service="hard-cut"],
.service-card:has(input:checked)[data-service="hot-start"],
.service-card:has(input:checked)[data-service="launch-control"],
.service-card:has(input:checked)[data-service="pop-and-bang"],
.service-card:has(input:checked)[data-service="immo-off"],
.service-card:has(input:checked)[data-service="torque-monitoring"],
.service-card:has(input:checked)[data-service="water-pump"],
.service-card:has(input:checked)[data-service="sport-displays-calibration"],
.service-card:has(input:checked)[data-service="evap"],
.service-card:has(input:checked)[data-service="oil-pressure-fix"],
.service-card:has(input:checked)[data-service="opf-gpf"],
.service-card:has(input:checked)[data-service="auto-stage"] {
    filter: saturate(1.12) brightness(1.08);
}

@media (max-width: 1100px) {
    .stage-grid,
    .modern-service-grid {
        grid-template-columns: 1fr;
    }
}



.request-step-page {
    grid-template-columns: minmax(0, 1fr);
    max-width: 1180px;
}

.progress-inline {
    display: flex;
    gap: 10px;
    margin: 18px 0 24px;
}

.progress-dot {
    width: 46px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.05);
}

.progress-dot.active {
    background: linear-gradient(135deg, var(--accent), #55f4cf);
    box-shadow: 0 8px 22px rgba(60, 225, 183, 0.28);
}

.progress-dot.done {
    background: linear-gradient(135deg, rgba(122, 140, 255, 0.9), rgba(60, 225, 183, 0.62));
}

.vehicle-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.vehicle-summary > div {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.vehicle-summary small {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.vehicle-summary strong {
    font-size: 1rem;
}

.compact-actions {
    margin-top: 18px;
}

.request-options-page {
    gap: 20px;
}

.request-options-page .card + .card {
    margin-top: 0;
}

@media (max-width: 900px) {
    .vehicle-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .vehicle-summary {
        grid-template-columns: 1fr;
    }

    .progress-dot {
        width: 100%;
    }

    .progress-inline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}


/* request options page refresh */
.services-card {
    background:
        radial-gradient(circle at top right, rgba(60, 225, 183, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(17, 31, 52, 0.96), rgba(11, 22, 37, 0.98));
}

.request-options-page .section-copy {
    max-width: 56ch;
}

.stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.stage-tile {
    min-height: 124px;
    border: 1px solid rgba(255,255,255,0.09);
}

.selection-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.06);
    transition: all 180ms ease;
}

.stage-tile:has(input:checked) .selection-indicator {
    border-color: rgba(97, 244, 212, 0.92);
    background: radial-gradient(circle at center, rgba(97, 244, 212, 0.95) 0 48%, transparent 52%);
    box-shadow: 0 0 0 6px rgba(60, 225, 183, 0.1);
}

.modern-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.service-card {
    position: relative;
    min-height: 206px;
    display: flex;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)),
        rgba(15, 29, 49, 0.94);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    isolation: isolate;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.96;
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.08), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
    z-index: 0;
    pointer-events: none;
}

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

.service-card:has(input:focus-visible) {
    outline: 2px solid rgba(97, 244, 212, 0.55);
    outline-offset: 3px;
}

.service-card-body {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    padding: 24px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.service-icon-wrap {
    min-height: 60px;
    display: grid;
    place-items: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75),
        0 12px 28px rgba(3, 12, 25, 0.2);
    font-size: 1.7rem;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-copy {
    width: 100%;
    align-items: center;
}

.service-copy strong {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.02em;
}

.service-copy small {
    margin-top: 4px;
    max-width: 24ch;
    min-height: 2.8em;
    text-align: center;
    color: #a9bddb;
}

.service-check {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(8, 18, 34, 0.55);
    border: 1px solid rgba(255,255,255,0.14);
    color: transparent;
    font-size: 1rem;
    font-weight: 900;
    transform: scale(0.86);
    transition: all 180ms ease;
}

.service-card:has(input:checked) {
    border-color: rgba(255,255,255,0.18);
    box-shadow:
        0 22px 44px rgba(5, 12, 24, 0.34),
        inset 0 0 0 1px rgba(255,255,255,0.04);
}

.service-card:has(input:checked) .service-check {
    color: #062318;
    background: linear-gradient(135deg, var(--accent), #7df6d8);
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 10px 24px rgba(60, 225, 183, 0.32);
    transform: scale(1);
}

.service-card:has(input:checked) .service-icon {
    transform: translateY(-2px) scale(1.04);
}

.service-card.service-dpf {
    background:
        radial-gradient(circle at top center, rgba(125, 228, 255, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(39, 69, 106, 0.98), rgba(15, 32, 58, 0.98));
}
.service-card.service-dpf:has(input:checked) {
    box-shadow: 0 0 0 1px rgba(126, 231, 255, 0.28), 0 22px 44px rgba(29, 77, 142, 0.28);
}

.service-card.service-egr {
    background:
        radial-gradient(circle at top center, rgba(95, 255, 217, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(20, 74, 78, 0.98), rgba(11, 34, 41, 0.98));
}
.service-card.service-egr:has(input:checked) {
    box-shadow: 0 0 0 1px rgba(95, 255, 217, 0.24), 0 22px 44px rgba(17, 76, 86, 0.32);
}

.service-card.service-adblue {
    background:
        radial-gradient(circle at top center, rgba(121, 177, 255, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(30, 67, 114, 0.98), rgba(15, 33, 67, 0.98));
}

.service-card.service-lambda-off {
    background:
        radial-gradient(circle at top center, rgba(203, 163, 255, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(63, 41, 106, 0.98), rgba(28, 20, 58, 0.98));
}

.service-card.service-maf,
.service-card.service-swirl-flaps,
.service-card.service-tva,
.service-card.service-exhaust-flaps,
.service-card.service-start-stop-off,
.service-card.service-speed-limit,
.service-card.service-hard-cut,
.service-card.service-hot-start,
.service-card.service-launch-control,
.service-card.service-pop-and-bang,
.service-card.service-immo-off,
.service-card.service-torque-monitoring,
.service-card.service-water-pump,
.service-card.service-sport-displays-calibration,
.service-card.service-vmax-off {
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.08), transparent 50%),
        linear-gradient(180deg, rgba(44, 60, 84, 0.98), rgba(20, 31, 50, 0.98));
}

@media (max-width: 1280px) {
    .modern-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .stage-grid,
    .modern-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .modern-service-grid,
    .stage-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 178px;
    }
}


:root {
  --accent-red: #ff4d57;
  --accent-red-soft: rgba(255, 77, 87, 0.16);
  --accent-red-border: rgba(255, 77, 87, 0.34);
}

.hero-red,
.card-red-outline,
.rail-alert,
.profile-pill-red {
  position: relative;
}

.hero-red::after,
.card-red-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-red-border);
  border-radius: inherit;
  pointer-events: none;
}

.danger-soft {
  background: linear-gradient(135deg, #ff5a64, #d31838);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.profile-pill-red {
  background: linear-gradient(135deg, rgba(255,77,87,0.16), rgba(255,77,87,0.06));
  border: 1px solid var(--accent-red-border);
}

.price-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent-red-border);
  background: rgba(255, 77, 87, 0.12);
}

.choice-content.centered,
.service-card-body.centered {
  align-items: center;
  text-align: center;
}

.service-card-v2 {
  min-height: 244px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(22,30,48,0.98), rgba(13,19,31,0.98));
  overflow: hidden;
}

.service-card-v2 .service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
  min-height: 100%;
  padding: 1.4rem 1.1rem 1.2rem;
}

.service-card-v2 .service-copy {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-card-v2 strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.service-card-v2 small {
  color: rgba(223, 231, 244, 0.78);
  line-height: 1.45;
}

.service-thumb {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,77,87,0.95), rgba(137, 16, 38, 0.95));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 30px rgba(255, 77, 87, 0.18);
}

.service-thumb img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.service-price,
.price-pill {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 77, 87, 0.15);
  border: 1px solid var(--accent-red-border);
}

.service-card-v2 .service-check {
  top: 0.9rem;
  right: 0.9rem;
  left: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: transparent;
  transition: 0.18s ease;
}

.service-card-v2 input:checked ~ .service-check {
  color: #fff;
  background: linear-gradient(135deg, #ff5a64, #d31838);
  box-shadow: 0 0 0 6px rgba(255, 77, 87, 0.12);
}

.service-card-v2 input:checked ~ .service-card-body,
.stage-tile input:checked ~ .choice-content {
  transform: translateY(-2px);
}

.service-card-v2 input:checked ~ .service-card-body .service-price,
.stage-tile input:checked ~ .choice-content .price-pill {
  background: linear-gradient(135deg, #ff5a64, #d31838);
}

.service-card-v2 input:checked ~ .service-card-body,
.stage-tile input:checked ~ .choice-content {
  transition: 0.2s ease;
}

.service-card-v2:hover,
.stage-tile:hover {
  border-color: var(--accent-red-border);
  transform: translateY(-2px);
}

.stage-tile {
  min-height: 220px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(22,30,48,0.98), rgba(13,19,31,0.98));
}

.stage-tile .choice-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.25rem;
}

.accent-steel .service-thumb,
.stage-accent-steel .service-thumb {
  background: linear-gradient(135deg, #516079, #2b3447);
  box-shadow: none;
}

.accent-crimson .service-thumb,
.stage-accent-crimson .service-thumb {
  background: linear-gradient(135deg, #ff5467, #7b1021);
}

.accent-ember .service-thumb,
.stage-accent-ember .service-thumb {
  background: linear-gradient(135deg, #ff6c47, #9f1c1c);
}

.service-card-v2 input:checked + .service-check + .service-card-body,
.stage-tile input:checked + .selection-indicator + .choice-content {
  background: linear-gradient(180deg, rgba(255, 77, 87, 0.08), rgba(255, 77, 87, 0.02));
  border-radius: 22px;
}

.user-card-rich {
  display: grid;
  gap: 0.9rem;
}

@media (max-width: 900px) {
  .service-card-v2,
  .stage-tile {
    min-height: auto;
  }
}


@media (max-width: 980px) {
    .topbar-row {
        flex-direction: column;
        align-items: stretch;
    }

    .topbar-actions {
        justify-content: flex-start;
    }

    .portal-ribbon {
        border-radius: 20px;
        flex-wrap: wrap;
    }
}


@media (max-width: 980px) {
    .topbar {
        left: 0;
    }

    .main-shell {
        padding-top: 110px;
    }
}



/* Compact unified option cards */
.stage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.modern-service-grid {
  gap: 10px;
}

.stage-tile,
.service-card {
  border-radius: 20px;
  overflow: hidden;
}

.choice-content {
  padding: 14px;
  gap: 10px;
}

.service-card {
  min-height: 102px;
}

.service-card-body {
  padding: 13px 14px;
  gap: 12px;
}

.service-thumb {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-thumb img {
  width: 56px;
  height: 56px;
}

.choice-content strong,
.service-copy strong {
  font-size: 0.96rem;
}

.choice-content small,
.service-copy small {
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.service-price,
.price-pill {
  min-width: 80px;
  padding: 0.4rem 0.72rem;
  font-size: 0.92rem;
}

.stage-tile:hover,
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 247, 219, 0.30);
  box-shadow:
    0 16px 30px rgba(6, 15, 28, 0.28),
    0 0 0 1px rgba(120, 247, 219, 0.08),
    0 0 22px rgba(120, 247, 219, 0.10);
}

.stage-tile:hover .service-thumb,
.service-card:hover .service-thumb {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 0 18px rgba(120, 247, 219, 0.12);
}

@media (max-width: 1280px) {
  .stage-grid,
  .modern-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .stage-grid,
  .modern-service-grid {
    grid-template-columns: 1fr;
  }
}


.empty-state-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-align: center;
  gap: 8px;
  width: 100%;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  color: #c9d7ee;
  padding: 24px;
}

.empty-state-box strong {
  font-size: 1rem;
  color: #eaf1ff;
}

.empty-state-box small {
  color: #8fa7c9;
}


.custom-select {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(122, 140, 255, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10, 22, 39, 0.96), rgba(7, 17, 31, 0.92));
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.custom-select-trigger:hover {
    border-color: rgba(122, 140, 255, 0.34);
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus {
    border-color: rgba(60, 225, 183, 0.52);
    box-shadow: 0 0 0 4px rgba(60, 225, 183, 0.12), 0 14px 30px rgba(0, 0, 0, 0.24);
    outline: none;
}

.custom-select.is-invalid .custom-select-trigger {
    border-color: rgba(255, 100, 124, 0.58);
    box-shadow: 0 0 0 4px rgba(255, 100, 124, 0.12);
}

.custom-select.is-disabled .custom-select-trigger {
    cursor: not-allowed;
    opacity: 0.7;
}

.custom-select-value {
    color: rgba(245, 247, 255, 0.68);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select.has-value .custom-select-value {
    color: var(--text);
}

.custom-select-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(213, 228, 255, 0.82);
    border-bottom: 2px solid rgba(213, 228, 255, 0.82);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
    flex: 0 0 auto;
}

.custom-select.is-open .custom-select-icon {
    transform: translateY(2px) rotate(225deg);
}

.custom-select-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 50;
    padding: 12px;
    border: 1px solid rgba(122, 140, 255, 0.2);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(10, 22, 39, 0.99), rgba(8, 18, 33, 0.99));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
}

.custom-select-search-wrap {
    margin-bottom: 10px;
}

.custom-select-search {
    min-height: 48px;
    padding: 12px 14px;
}

.custom-select-options {
    display: grid;
    gap: 6px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
}

.custom-select-option {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    color: #eaf0ff;
    cursor: pointer;
    text-align: left;
    font: inherit;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.custom-select-option:hover {
    border-color: rgba(122, 140, 255, 0.24);
    background: rgba(122, 140, 255, 0.12);
    transform: translateX(2px);
}

.custom-select-option.is-selected {
    border-color: rgba(60, 225, 183, 0.32);
    background: rgba(60, 225, 183, 0.14);
    color: #d9fff5;
}

.custom-select-empty {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}
