﻿:root {
    --brand-deep: #0B0C0F;
    --brand-navy: #1C1E24;
    --brand-mid: #B8863B;
    --brand-cyan: #D9B26D;
    --brand-aqua: #E8C784;
    --bg: #FAF8F4;
    --surface: #FFFFFF;
    --ink: #17181C;
    --muted: #6B6F76;
    --line: #E8E4DA;
    --discount: #B3452E;
    --good: #1F7A54;
    --radius: 16px;
    --sidebar-w: 272px;
    --topbar-h: 72px;
    --ff-display: 'Fraunces', 'Playfair Display', 'Inter', serif;
    --ff-body: 'Inter', sans-serif;
    --ff-mono: 'JetBrains Mono', monospace;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--ff-body);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .ff-display {
    font-family: var(--ff-display);
}

.ff-mono {
    font-family: var(--ff-mono);
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.app-shell {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-w);
    flex-shrink: 0;
    background: linear-gradient(180deg,var(--brand-deep) 0%, var(--brand-navy) 100%);
    color: #E9E5DB;
    padding: 22px 18px 24px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 50;
    transition: transform .3s ease;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 18px;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
}

.sidebar-brand img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.sidebar-close {
    display: none;
    background: transparent;
    border: 0;
    color: #E9E5DB;
    font-size: 22px;
    line-height: 1;
    margin-left: auto;
    cursor: pointer;
}

.side-label {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9B9689;
    margin: 22px 6px 10px;
    font-weight: 600;
}

.side-search {
    position: relative;
    margin: 0 2px;
}

    .side-search input {
        width: 100%;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        color: #F2EFE8;
        border-radius: 10px;
        padding: 10px 12px 10px 36px;
        font-size: 13.5px;
    }

        .side-search input::placeholder {
            color: #9B9689;
        }

    .side-search svg {
        position: absolute;
        left: 11px;
        top: 50%;
        transform: translateY(-50%);
        opacity: .7;
    }

.chip-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 2px;
}

.chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 9px;
    cursor: pointer;
    font-size: 13.5px;
    color: #C9C4B7;
    transition: .15s;
    border: 1px solid transparent;
    user-select: none;
}

    .chip:hover {
        background: rgba(255,255,255,.06);
    }

    .chip.active {
        background: rgba(184,134,59,.18);
        color: #E8C784;
        border-color: rgba(217,178,109,.4);
        font-weight: 600;
    }

    .chip .count {
        font-family: var(--ff-mono);
        font-size: 11.5px;
        opacity: .7;
    }

.side-widget {
    margin-top: 26px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

    .side-widget .label {
        font-size: 11px;
        color: #9B9689;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .side-widget .value {
        font-family: var(--ff-mono);
        font-size: 22px;
        color: #E8C784;
        font-weight: 600;
        margin-top: 2px;
    }

    .side-widget .sub {
        font-size: 12px;
        color: #A39D8F;
        margin-top: 6px;
    }

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,16,30,.5);
    z-index: 40;
}

.main-col {
    margin-left: var(--sidebar-w);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: var(--topbar-h);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 16px -8px rgba(23,24,28,.10);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 30;
}

.burger {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
}

.topbar-title {
    font-size: 14.5px;
    color: var(--muted);
}

    .topbar-title strong {
        color: var(--ink);
    }

.topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: flex;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 3px;
}

    .lang-toggle button {
        border: 0;
        background: transparent;
        padding: 6px 12px;
        border-radius: 7px;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--muted);
        cursor: pointer;
    }

        .lang-toggle button.active {
            background: var(--brand-deep);
            color: #fff;
        }

.badge-nologin {
    font-size: 12.5px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 7px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .badge-nologin svg {
        width: 13px;
        height: 13px;
        color: var(--good);
    }

.hero {
    margin: 22px 26px 6px;
    padding: 34px 36px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand-navy) 100%);
    border: 1px solid rgba(217,178,109,.22);
    box-shadow:
        0 24px 48px -24px rgba(11,12,15,.45),
        inset 0 1px 0 rgba(255,255,255,.06);
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(217,178,109,.22) 1.5px, transparent 1.5px);
        background-size: 24px 24px;
        mask-image: radial-gradient(ellipse at 85% 50%, black, transparent 62%);
        pointer-events: none;
        z-index: 0;
    }

.hero-deco {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 230px;
    height: 230px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(217,178,109,.35);
}

.hero-ring--1 {
    animation: heroRingSpin 26s linear infinite;
}

    .hero-ring--1::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 50%;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--brand-aqua);
        box-shadow: 0 0 14px 3px rgba(232,199,132,.8);
    }

.hero-ring--2 {
    inset: 13%;
    border-style: dashed;
    border-color: rgba(217,178,109,.28);
    animation: heroRingSpin 40s linear infinite reverse;
}

.hero-ring--3 {
    inset: 28%;
    border-color: rgba(232,199,132,.45);
    animation: heroRingSpin 18s linear infinite;
}

    .hero-ring--3::before {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--brand-cyan);
        box-shadow: 0 0 10px 2px rgba(217,178,109,.7);
    }

.hero-core {
    position: absolute;
    inset: 40%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,199,132,.55), rgba(184,134,59,.15) 60%, transparent 75%);
    animation: heroCorePulse 4.5s ease-in-out infinite;
}

.hero-rise {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

    .hero-rise span {
        position: absolute;
        bottom: -8px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--brand-aqua);
        box-shadow: 0 0 8px 2px rgba(232,199,132,.5);
        opacity: 0;
        animation: heroRiseUp 7s linear infinite;
    }

    .hero-rise span:nth-child(1) { left: 56%; animation-delay: 0s; }
    .hero-rise span:nth-child(2) { left: 66%; animation-delay: 1.4s; width: 3px; height: 3px; }
    .hero-rise span:nth-child(3) { left: 74%; animation-delay: 2.8s; }
    .hero-rise span:nth-child(4) { left: 84%; animation-delay: 4.2s; width: 3px; height: 3px; }
    .hero-rise span:nth-child(5) { left: 92%; animation-delay: 5.6s; }

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: .05em;
    color: var(--brand-aqua);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroFadeUp .6s ease forwards;
}

    .hero-eyebrow::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--brand-aqua);
        box-shadow: 0 0 0 3px rgba(232,199,132,.35);
        animation: heroDotPulse 2s ease-in-out infinite;
    }

.hero h1 {
    font-size: clamp(24px,3vw,36px);
    line-height: 1.15;
    letter-spacing: -.01em;
    max-width: 720px;
    margin: 0 0 12px;
    color: #fff;
    opacity: 0;
    animation: heroFadeUp .6s ease forwards;
    animation-delay: .1s;
}

    .hero h1 em {
        font-style: normal;
        background: linear-gradient(100deg,var(--brand-aqua),#fff 45%,var(--brand-cyan) 55%,var(--brand-aqua));
        background-size: 250% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: heroGradientShift 6s linear infinite;
    }

.hero p {
    color: rgba(255,255,255,.72);
    font-size: 14.5px;
    max-width: 540px;
    margin: 0;
    opacity: 0;
    animation: heroFadeUp .6s ease forwards;
    animation-delay: .2s;
}

.hero-wave {
    display: none;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroDotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(217,178,109,.28); }
    50% { box-shadow: 0 0 0 6px rgba(217,178,109,.12); }
}

@keyframes heroGradientShift {
    to { background-position: 250% center; }
}

@keyframes heroRingSpin {
    to { transform: rotate(360deg); }
}

@keyframes heroCorePulse {
    0%, 100% { transform: scale(1); opacity: .8; }
    50% { transform: scale(1.25); opacity: 1; }
}

@keyframes heroRiseUp {
    0% { opacity: 0; transform: translateY(0); }
    12% { opacity: .9; }
    75% { opacity: .6; }
    100% { opacity: 0; transform: translateY(-320px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero,
    .hero::before,
    .hero-ring,
    .hero-core,
    .hero-rise span,
    .hero-eyebrow,
    .hero h1,
    .hero p,
    .hero-eyebrow::before,
    .hero h1 em {
        animation: none;
        opacity: 1;
    }
}

@media (max-width:900px) {
    .hero-deco {
        opacity: .3;
        right: -20%;
    }
}

.content {
    padding: 30px 26px 60px;
    flex: 1;
}

.content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    gap: 10px;
}

    .content-head h2 {
        font-size: 20px;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .content-head__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 9px;
        color: #fff;
        background: linear-gradient(135deg, var(--brand-mid), var(--brand-cyan));
        box-shadow: 0 6px 14px -6px rgba(184,134,59,.45);
    }

        .content-head__icon svg {
            width: 16px;
            height: 16px;
        }

    .content-head .result-count {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: var(--ff-mono);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--brand-mid);
        background: rgba(184,134,59,.10);
        border: 1px solid rgba(184,134,59,.22);
        border-radius: 20px;
        padding: 6px 14px;
    }

    .result-count__dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--brand-cyan);
        box-shadow: 0 0 0 3px rgba(217,178,109,.25);
        animation: heroDotPulse 2s ease-in-out infinite;
    }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(270px,1fr));
    gap: 20px;
}

.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(28px);
    transition: transform .5s cubic-bezier(.22,.9,.32,1), box-shadow .25s ease, border-color .25s ease, opacity .5s ease;
}

    .card.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(184,134,59,.12), transparent 65%);
        opacity: 0;
        transition: opacity .3s ease;
        pointer-events: none;
        z-index: 2;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -16px rgba(23,24,28,.18);
        border-color: rgba(184,134,59,.30);
    }

    .card:hover::before {
        opacity: 1;
    }

@media (prefers-reduced-motion: reduce) {
    .card {
        opacity: 1;
        transform: none;
        transition: box-shadow .2s ease, border-color .2s ease;
    }
}

.card-thumb {
    height: 150px;
    position: relative;
    background: var(--thumb-bg,#0B0C0F);
    overflow: hidden;
}

.mock-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: rgba(0,0,0,.18);
}

    .mock-topbar span {
        position: absolute;
        left: 10px;
        top: 5px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,.35);
    }

        .mock-topbar span:nth-child(2) {
            left: 20px;
        }

        .mock-topbar span:nth-child(3) {
            left: 30px;
        }

.mock-sidebar {
    position: absolute;
    top: 16px;
    left: 0;
    bottom: 0;
    width: 34%;
    background: rgba(255,255,255,.06);
}

    .mock-sidebar div {
        height: 6px;
        border-radius: 3px;
        background: rgba(255,255,255,.25);
        margin: 10px 8px;
    }

        .mock-sidebar div:nth-child(2) {
            width: 60%;
            background: var(--thumb-accent,#D9B26D);
        }

.mock-body {
    position: absolute;
    top: 16px;
    left: 34%;
    right: 0;
    bottom: 0;
    padding: 10px;
}

.mock-kpi {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

    .mock-kpi i {
        flex: 1;
        height: 20px;
        border-radius: 5px;
        background: rgba(255,255,255,.12);
    }

.mock-chart {
    height: 52px;
    border-radius: 6px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 6px;
}

    .mock-chart b {
        flex: 1;
        background: var(--thumb-accent,#D9B26D);
        border-radius: 2px;
        opacity: .85;
    }

.card-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-family: var(--ff-mono);
}

.status-live {
    background: rgba(24,155,103,.9);
    color: #fff;
}

.status-soon {
    background: rgba(255,255,255,.9);
    color: var(--brand-deep);
}

.status-demo {
    background: rgba(179,69,46,.92);
    color: #fff;
}

.card-body {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.card-title {
    font-family: var(--ff-display);
    font-size: 16.5px;
    font-weight: 600;
    margin: 0;
}

.card-cat {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

.fav-btn {
    border: 1px solid var(--line);
    background: var(--surface);
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: var(--muted);
    transition: .15s;
}

    .fav-btn svg {
        width: 16px;
        height: 16px;
    }

    .fav-btn.active {
        background: rgba(179,69,46,.08);
        border-color: rgba(179,69,46,.35);
        color: var(--discount);
    }

.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    font-size: 11px;
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: var(--ff-mono);
}

.stat-row {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--muted);
    padding-top: 2px;
    border-top: 1px dashed var(--line);
    margin-top: 2px;
}

    .stat-row div {
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: var(--ff-mono);
    }

    .stat-row svg {
        width: 14px;
        height: 14px;
        opacity: .7;
    }

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 2px;
}

.price-now {
    font-family: var(--ff-mono);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
}

.price-old {
    font-family: var(--ff-mono);
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
}

.price-disc {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--discount);
    padding: 2px 7px;
    border-radius: 6px;
    margin-left: auto;
    font-family: var(--ff-mono);
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    position: relative;
}

.btn-preview {
    flex: 1;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    padding: 9px 10px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

    .btn-preview:hover {
        background: #E9EEF3;
    }

.btn-buy {
    flex: 1;
    border: 0;
    background: var(--brand-deep);
    color: #fff;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

    .btn-buy:hover {
        background: var(--brand-mid);
    }

    .btn-buy:disabled {
        background: #C7CFD8;
        cursor: not-allowed;
    }

.buy-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 28px -10px rgba(18,33,58,.25);
    width: 210px;
    padding: 6px;
    display: none;
    z-index: 20;
}

    .buy-menu.open {
        display: block;
    }

    .buy-menu a {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 9px 10px;
        border-radius: 7px;
        font-size: 13px;
        color: var(--ink);
        font-weight: 500;
    }

        .buy-menu a:hover {
            background: var(--bg);
        }

    .buy-menu .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
    }

.demo-note {
    margin-top: 6px;
    font-size: 11px;
    color: var(--muted);
    background: var(--bg);
    border: 1px dashed var(--line);
    border-radius: 7px;
    padding: 6px 8px;
}

footer {
    border-top: 1px solid var(--line);
    padding: 22px 26px;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
}

@media (max-width:900px) {
    .sidebar {
        transform: translateX(-100%);
    }

        .sidebar.open {
            transform: translateX(0);
        }

    .sidebar-close {
        display: block;
    }

    .main-col {
        margin-left: 0;
    }

    .burger {
        display: flex;
    }

    .sidebar-overlay.open {
        display: block;
    }

    .hero {
        padding: 36px 18px 26px;
    }

    .content {
        padding: 22px 18px 50px;
    }

    .topbar {
        padding: 0 16px;
    }

    .topbar-title {
        display: none;
    }

    .badge-nologin {
        display: none;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

.sidebar-brand a {
    display: flex;
    align-items: center;
}

.ars-dropdown {
    position: relative;
}

.ars-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    cursor: pointer;
}

.ars-dropdown__trigger:hover {
    border-color: var(--brand-mid);
}

.ars-dropdown__trigger i {
    font-size: 15px;
    color: var(--muted);
}

.ars-dropdown__code {
    font-family: var(--ff-mono);
    letter-spacing: .02em;
}

.ars-dropdown__flag {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 1px rgba(18,33,58,.08);
    flex-shrink: 0;
}

.ars-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    margin: 0;
    padding: 8px;
    list-style: none;
    width: 190px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 32px -12px rgba(18,33,58,.28);
    z-index: 60;
}

.ars-dropdown__menu.open {
    display: block;
}

.ars-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
}

.ars-dropdown__item:hover {
    background: var(--bg);
}

.ars-dropdown__item--active {
    background: rgba(184,134,59,.10);
    font-weight: 700;
    color: var(--brand-mid);
}

.ars-dropdown__check {
    display: none;
    margin-left: auto;
    color: var(--brand-mid);
    font-size: 15px;
}

.ars-dropdown__item--active .ars-dropdown__check {
    display: inline-block;
}

.error-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.error-state__code {
    font-family: var(--ff-mono);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--brand-mid);
    background: rgba(184,134,59,.10);
    border: 1px solid rgba(184,134,59,.22);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.error-state__title {
    font-size: 26px;
    margin: 0 0 10px;
}

.error-state__desc {
    color: var(--muted);
    font-size: 15px;
    margin: 0 0 26px;
}

.error-state__link {
    display: inline-block;
}
