/* ── GorillaOS website — dark green / pale / white ──
   Layout heavily inspired by Sakura's mod collection page; theme is GorillaOS:
   deep banana-leaf green background, white text, pale linen call-to-action buttons. */

:root {
    --bg: #0A1410;          /* deepest green — page background */
    --bg-2: #0F1F18;        /* card surface */
    --bg-3: #142A20;        /* hover surface */
    --bg-4: #182F25;        /* sticky header surface */

    --line: #1F3528;        /* default borders */
    --line-strong: #2A4A36;
    --line-bright: #3A6B4D;

    --text: #FFFFFF;        /* primary text — white per spec */
    --text-2: #D9E2D2;      /* secondary text */
    --muted: #8AA493;       /* muted/subtitle */

    --accent: #D4C9B0;      /* pale linen — primary CTA per spec */
    --accent-2: #E5DCC3;    /* hover */
    --accent-deep: #A89A7C; /* shadow / pressed */
    --accent-text: #0A1410; /* dark text ON pale buttons for contrast */

    --green: #76C893;       /* GorillaOS mint — used sparingly for highlights/badges */
    --green-deep: #2E7B4D;
    --warn: #E5C67A;
    --bad: #F38477;

    --shadow: 0 18px 60px rgba(0, 0, 0, .45);
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, .35);

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;

    --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    /* Flat chalkboard dark — gradients removed per user, the soft
       pale glow at the corners read as washed-out instead of the
       intended GorillaOS dark-board feel. */
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: 'Space Grotesk', 'Inter', sans-serif; line-height: 1.15; margin: 0 0 .4em; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 .8em; color: var(--text-2); }
.muted { color: var(--muted); }
.centered { text-align: center; }
.lede { font-size: 1.05rem; max-width: 680px; margin-left: auto; margin-right: auto; }
.small { font-size: 12px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* ── header ── */
.hdr {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10, 20, 16, .82);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.hdr__inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 26px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 700; }
.logo:hover { color: var(--accent-2); }
.logo__mark {
    width: 28px; height: 28px; border-radius: 50%;
    background: url('/img/logo.png') center / cover no-repeat;
    box-shadow: 0 0 0 3px rgba(212, 201, 176, .10), 0 0 14px rgba(118, 200, 147, .35);
}
.logo__mark--big {
    width: 68px; height: 68px;
    box-shadow: 0 0 0 6px rgba(212, 201, 176, .12), 0 0 28px rgba(118, 200, 147, .55);
    margin-bottom: 14px;
}
.logo__text { font-family: 'Space Grotesk', sans-serif; font-size: 17px; letter-spacing: -.01em; }
.hdr__nav { display: flex; align-items: center; gap: 22px; }
.hdr__nav a { color: var(--text-2); font-size: 14px; font-weight: 500; transition: color .15s; }
.hdr__nav a:hover, .hdr__nav a.active { color: var(--text); }
.hdr__discord { display: inline-flex; align-items: center; gap: 6px; color: var(--text-2); }
.hdr__discord svg { color: #5865F2; }
.hdr__dashboard { color: var(--text-2); }

/* ── buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
    font-weight: 600; font-size: 13px;
    /* Transition ONLY safe properties. `all` tried to animate the accent
       button's gradient background into a solid on hover, which browsers can't
       interpolate — that produced the hover flicker. */
    transition: box-shadow .15s ease, filter .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
    cursor: pointer; user-select: none; font-family: inherit;
    letter-spacing: .01em;
}
.btn--accent {
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    color: var(--accent-text);
    border-color: var(--accent-deep);
    box-shadow: 0 4px 14px rgba(212, 201, 176, .18);
}
/* Keep the SAME gradient on hover (no gradient→solid swap) and just brighten +
   deepen the glow. Geometry and background type stay identical, so the hover is
   perfectly smooth with no flicker. */
.btn--accent:hover { filter: brightness(1.06); box-shadow: 0 8px 26px rgba(212, 201, 176, .34); }
.btn--ghost {
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    border-color: var(--line-strong);
}
.btn--ghost:hover { color: var(--text); border-color: var(--line-bright); background: rgba(255, 255, 255, .07); }
.btn--lg { padding: 14px 28px; font-size: 14px; border-radius: 12px; }
.btn--sm { padding: 8px 14px; font-size: 12px; border-radius: 8px; }
.btn--full { display: flex; width: 100%; }

/* ── hero ── */
.hero {
    padding: 120px 26px 80px;
    text-align: center;
}
.hero__inner { max-width: 880px; margin: 0 auto; }
.hero__eyebrow {
    text-transform: uppercase; letter-spacing: .25em; font-size: 11px;
    font-weight: 700; color: var(--accent); margin: 0 0 22px;
}
.grad {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { font-size: 1.1rem; color: var(--text-2); max-width: 680px; margin: 14px auto 16px; }
.hero__pills { font-size: 13px; color: var(--muted); margin: 0 0 30px; letter-spacing: .04em; }
.hero__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── shared block layout ── */
.block { padding: 80px 26px; }
.block--alt { background: linear-gradient(180deg, transparent, rgba(20, 42, 32, .35), transparent); }
.block__inner { max-width: var(--max); margin: 0 auto; }
.block__inner > .centered + .muted { margin: 0 auto 40px; max-width: 640px; }

/* ── grids + cards ── */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-soft);
}
.card--tool { display: flex; flex-direction: column; }
.card__ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(212, 201, 176, .08);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}
.card__lede { color: var(--accent); font-size: 13px; margin: 0 0 14px; }
.card__list { list-style: none; padding: 0; margin: 0; }
.card__list li {
    color: var(--text-2); font-size: 13.5px;
    padding: 6px 0;
    border-bottom: 1px dashed transparent;
    position: relative;
    padding-left: 18px;
}
.card__list li::before {
    content: "•"; color: var(--accent); position: absolute; left: 4px; top: 6px;
}

/* "Built for content creators" / standard banner */
.standard {
    margin: 36px auto 0;
    max-width: 540px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex; align-items: center; gap: 16px;
    text-align: left;
}
.standard__ico {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(212, 201, 176, .08);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.standard h4 { margin: 0 0 4px; font-size: 14px; }
.standard p { margin: 0; color: var(--muted); font-size: 12.5px; }

/* steps */
.steps { margin-top: 14px; }
.step {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
}
.step__num {
    display: inline-block; font-family: 'Space Grotesk';
    color: var(--accent); font-weight: 700; font-size: 14px;
    margin-bottom: 8px; letter-spacing: .15em;
}
.step h3 { margin: 4px 0 8px; }
.step p { color: var(--text-2); font-size: 14px; margin: 0; }

/* ── pricing page ── */
.pricing { padding: 80px 26px; }
.pricing__inner { max-width: var(--max); margin: 0 auto; text-align: center; }

.toggle {
    display: inline-flex; padding: 4px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    margin: 24px auto 40px;
}
.toggle__btn {
    background: transparent; border: 0; color: var(--text-2);
    font-family: inherit; font-weight: 600; font-size: 13px;
    padding: 10px 22px; border-radius: 999px; cursor: pointer;
    transition: background .15s, color .15s;
    display: inline-flex; align-items: center; gap: 8px;
}
.toggle__btn.is-active {
    background: var(--accent); color: var(--accent-text);
    box-shadow: 0 2px 10px rgba(212, 201, 176, .18);
}
.toggle__save {
    font-size: 10px; font-weight: 700; padding: 2px 7px;
    background: var(--green); color: #07140C; border-radius: 999px;
    text-transform: uppercase; letter-spacing: .08em;
}
.toggle__btn.is-active .toggle__save { background: rgba(7, 20, 12, .15); color: var(--accent-text); }

.plans { text-align: left; }
.plan {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .15s, border-color .15s, box-shadow .15s;
}
.plan:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.plan--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 18px 50px rgba(212, 201, 176, .15);
    transform: scale(1.02);
}
.plan__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--accent-text);
    font-size: 10px; font-weight: 800; letter-spacing: .15em;
    padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
}
.plan h3 { margin: 0 0 8px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; font-family: 'Space Grotesk'; }
.plan__amount { font-size: 36px; font-weight: 700; color: var(--text); }
.plan__per { color: var(--muted); font-size: 13px; }
.plan ul {
    list-style: none; padding: 0; margin: 0 0 22px;
    flex: 1;
}
.plan ul li {
    color: var(--text-2); font-size: 14px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
    position: relative; padding-left: 22px;
}
.plan ul li::before {
    content: "✓"; color: var(--accent); font-weight: 700;
    position: absolute; left: 0; top: 9px;
}
.plan ul li:last-child { border-bottom: 0; }
.plan .btn { margin-top: 8px; }
.plan .btn--ghost { margin-top: 8px; }

/* ── dashboard ── */
.dash { padding: 60px 26px 80px; }
.dash__inner { max-width: 760px; margin: 0 auto; }
.dash__inner h1 { margin: 0 0 28px; }
.dash-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 16px;
}
.dash-card h3 { margin: 0 0 14px; font-size: 15px; }
.dash-row {
    display: flex; gap: 12px;
    padding: 8px 0; border-bottom: 1px dashed var(--line);
    font-size: 14px;
}
.dash-row:last-child { border-bottom: 0; }
.dash-key { color: var(--muted); min-width: 120px; }
.dash-val { color: var(--text); font-weight: 500; }
.dash-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

.pill {
    display: inline-block; padding: 3px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.pill--ok { background: rgba(118, 200, 147, .15); color: var(--green); border: 1px solid var(--green-deep); }

.redeem-form {
    display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.redeem-form input {
    flex: 1; min-width: 220px;
    padding: 12px 14px; font-family: inherit; font-size: 14px;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    transition: border-color .15s, background .15s;
}
.redeem-form input:focus {
    outline: 0; border-color: var(--accent); background: var(--bg-3);
}
.redeem-msg {
    margin: 12px 0 0; padding: 10px 14px; border-radius: 8px;
    font-size: 13px;
}
.redeem-msg.ok { background: rgba(118, 200, 147, .12); color: var(--green); border: 1px solid var(--green-deep); }
.redeem-msg.err { background: rgba(243, 132, 119, .1); color: var(--bad); border: 1px solid rgba(243, 132, 119, .35); }

.grants { list-style: none; padding: 0; margin: 8px 0 0; }
.grants li {
    padding: 12px 14px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    font-size: 13.5px;
}
.grants li strong { color: var(--accent); }
.grants .grants__exp { color: var(--muted); font-size: 12px; }

.dash-card--login { text-align: center; padding: 40px 28px; }
.dash-card--login .btn { margin-top: 14px; }

/* ── login ── */
.login {
    min-height: calc(100vh - 90px);
    display: flex; align-items: center; justify-content: center;
    padding: 40px 26px;
}
.login__card {
    width: 100%; max-width: 420px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}
.login__card h1 { font-size: 1.6rem; margin: 0 0 8px; }
.login__card .btn { margin-top: 22px; }
.login__small { font-size: 11px; margin-top: 16px; }

/* ── footer ── */
.ftr { border-top: 1px solid var(--line); margin-top: 80px; background: var(--bg-2); }
.ftr__inner { max-width: var(--max); margin: 0 auto; padding: 40px 26px; }
.ftr__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.ftr__brand strong { color: var(--text); font-size: 16px; }
.ftr__brand p { margin: 0; flex-basis: 100%; color: var(--muted); font-size: 12px; }
.ftr__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.ftr__cols h4 { color: var(--accent); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 12px; }
.ftr__cols a { display: block; color: var(--text-2); font-size: 14px; padding: 4px 0; }
.ftr__cols a:hover { color: var(--text); }
.ftr__small { color: var(--muted); font-size: 12px; margin: 0; }

/* ── modal (replaces alert/confirm/prompt) ── */
.modal-host { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(4, 10, 7, .68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    pointer-events: auto;
    opacity: 0;
    transition: opacity .18s ease;
}
.modal-backdrop.show { opacity: 1; }
.modal {
    background: var(--bg-2);
    border: 2px solid var(--line-strong);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 460px;
    width: 100%;
    box-shadow: var(--shadow);
    color: var(--text);
    transform: translateY(8px) scale(.97);
    transition: transform .22s cubic-bezier(.2,.7,.2,1);
}
.modal-backdrop.show .modal { transform: translateY(0) scale(1); }
.modal__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.modal__icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(212, 201, 176, .12);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700;
    border: 1px solid var(--line-strong);
    flex-shrink: 0;
}
.modal__title { margin: 0; font-size: 17px; font-weight: 700; color: var(--text); }
.modal__body { color: var(--text-2); font-size: 14px; line-height: 1.55; margin: 0 0 22px; white-space: pre-wrap; }
.modal__input {
    width: 100%; padding: 12px 14px; font-family: inherit; font-size: 14px;
    background: var(--bg); color: var(--text);
    border: 1px solid var(--line-strong); border-radius: 10px;
    margin-bottom: 18px;
}
.modal__input:focus { outline: 0; border-color: var(--accent); background: var(--bg-3); }
.modal__actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn--danger {
    background: linear-gradient(180deg, #F38477, #B85A4E);
    color: #fff;
    border-color: #913628;
}
.btn--danger:hover { transform: translateY(-1px); }

/* ── eye-toggle for sensitive fields ── */
.dash-row { align-items: center; }
.dash-val.secret { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .04em; }
.dash-val.secret.is-revealed { font-family: inherit; letter-spacing: 0; color: var(--text); }
.dash-val.secret.mono.is-revealed { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0; }
.dash-eye {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 5px 8px;
    cursor: pointer;
    margin-left: auto;
    display: inline-flex; align-items: center; justify-content: center;
    transition: color .12s, border-color .12s, background .12s;
}
.dash-eye:hover { color: var(--accent); border-color: var(--accent-deep); background: rgba(212,201,176,.08); }
.dash-eye[aria-pressed="true"] { color: var(--accent); border-color: var(--accent-deep); }
.dash-hint {
    color: var(--muted); font-size: 11.5px; margin: 12px 0 0; line-height: 1.5;
    padding-top: 10px; border-top: 1px dashed var(--line);
}

/* ── pricing cards: compact + subtle hover ── */
.plan {
    transition: transform .18s ease, border-color .18s, box-shadow .18s;
}
/* Use long-form padding so the 22px checkmark column is never overridden. */
.plan ul li {
    font-size: 13px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-right: 0;
    padding-left: 22px;
    color: var(--text-2);
    transition: color .15s;
}
.plan ul li::before { top: 7px; }   /* keep checkmark aligned with the new line height */
/* Subtle hover for the standard cards. */
.plan:not(.plan--featured):hover {
    transform: translateY(-2px);
    border-color: var(--line-bright);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}
/* Featured card keeps its accent glow + outline on hover (just lifts a bit more). */
.plan--featured:hover {
    transform: scale(1.02) translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 22px 56px rgba(212, 201, 176, .22);
}
.plan:hover ul li { color: var(--text); }

/* Make sure cards always have breathing room from the footer line below them. */
.plans { margin-top: 14px; margin-bottom: 36px; }
.pricing__foot { margin-top: 24px; padding-top: 18px; border-top: 1px dashed var(--line); }
.pricing__inner { padding-bottom: 40px; }

/* ── responsive ── */
@media (max-width: 900px) {
    .grid--2, .grid--3 { grid-template-columns: 1fr; }
    .hero { padding: 80px 22px 60px; }
    .hdr__nav a:not(.btn):not(.hdr__discord) { display: none; }
    .hdr__nav { gap: 12px; }
    .ftr__cols { grid-template-columns: 1fr 1fr; }
    .plan--featured { transform: none; }
}

/* ── Pricing feature list: full list per tier, not-included rows marked out ── */
.plan__feats { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.plan__feats .feat { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; line-height: 1.35; }
.plan__feats .tick { flex: 0 0 auto; width: 16px; text-align: center; font-weight: 800; }
.plan__feats .feat--in .tick { color: var(--green); }
.plan__feats .feat--out { opacity: .42; }
.plan__feats .feat--out .tick { color: var(--muted); }
/* strike only the label text, never the tick glyph */
.plan__feats .feat--out { text-decoration: line-through; text-decoration-color: rgba(138, 164, 147, .5); }
.plan__feats .feat--out .tick { text-decoration: none; display: inline-block; }

/* ── Header: role badge (top-left) + user avatar dropdown (top-right) ── */
.role-badge {
    display: inline-flex; align-items: center;
    margin-left: 10px; padding: 3px 9px;
    font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    border-radius: 999px; line-height: 1;
}
.role-badge--admin  { color: #0A1410; background: var(--accent); box-shadow: 0 0 0 1px rgba(212,201,176,.4); }
.role-badge--tester { color: var(--green); background: rgba(118,200,147,.14); box-shadow: inset 0 0 0 1px rgba(118,200,147,.5); }

.user-menu { position: relative; display: inline-flex; }
.user-menu__trigger {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 1px solid var(--line); border-radius: 999px;
    padding: 3px 8px 3px 3px; cursor: pointer;
    transition: border-color .15s, background .15s;
}
.user-menu__trigger:hover { border-color: var(--line-bright); background: rgba(255,255,255,.05); }
.user-menu__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; display: block; background: var(--bg-3); }
.user-menu__avatar--fallback { display: inline-flex; align-items: center; justify-content: center; color: var(--accent); font-weight: 700; font-size: 13px; }
.user-menu__caret { color: var(--muted); font-size: 11px; transition: transform .18s ease; }
.user-menu.is-open .user-menu__caret { transform: rotate(180deg); }

.user-menu__dropdown {
    position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
    min-width: 190px; padding: 6px;
    background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-6px) scale(.98); pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
}
.user-menu.is-open .user-menu__dropdown { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.user-menu__name {
    padding: 8px 10px 10px; margin-bottom: 4px; font-weight: 700; font-size: 13px; color: var(--text);
    border-bottom: 1px solid var(--line); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.user-menu__item {
    display: flex; align-items: center; width: 100%; padding: 9px 10px; border-radius: 8px;
    background: none; border: 0; text-align: left; cursor: pointer;
    color: var(--text-2); font-size: 13px; font-weight: 500; text-decoration: none;
    transition: background .12s, color .12s;
}
.user-menu__item:hover { background: var(--bg-3); color: var(--text); }
.user-menu__logout:hover { color: var(--bad); }
