/* 00-base.css */
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/builder/tpl/fl/header/fonts/manrope/manrope-cyrillic-ext.woff2") format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/builder/tpl/fl/header/fonts/manrope/manrope-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/builder/tpl/fl/header/fonts/manrope/manrope-latin.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;
}

:root {
    --fl-ink: #11131a;
    --fl-muted: #62697a;
    --fl-surface: #ffffff;
    --fl-bg: #f6f7fb;
    --fl-line: #e6e8f0;
    --fl-primary: #6757f5;
    --fl-primary-deep: #5143de;
    --fl-accent: #b9f34a;
    --fl-success: #20a875;
    --fl-radius-sm: 14px;
    --fl-radius: 22px;
    --fl-radius-lg: 32px;
    --fl-shadow: 0 24px 80px rgba(35, 31, 83, .10);
}

[data-fl-presence-user] { position: relative; }
.fl-presence-avatar { position: relative; display: inline-grid; flex: 0 0 auto; }
.fl-presence-dot {
    position: absolute !important;
    right: 4%;
    bottom: 4%;
    z-index: 8;
    display: block;
    width: clamp(8px, 22%, 14px) !important;
    height: auto !important;
    aspect-ratio: 1;
    box-sizing: border-box;
    border: 2px solid #11151c !important;
    border-radius: 50% !important;
    background: #35d07f !important;
    box-shadow: 0 0 0 1px rgba(53,208,127,.28), 0 0 12px rgba(53,208,127,.42) !important;
    pointer-events: none;
}
.fl-presence-dot[hidden] { display: none !important; }
[data-theme="light"] .fl-presence-dot { border-color: #fff !important; }
@media (prefers-reduced-motion: no-preference) {
    [data-fl-presence-user].is-online .fl-presence-dot { animation: fl-presence-breathe 2.4s ease-in-out infinite; }
}
@keyframes fl-presence-breathe {
    0%,100% { box-shadow: 0 0 0 1px rgba(53,208,127,.24), 0 0 9px rgba(53,208,127,.28); }
    50% { box-shadow: 0 0 0 2px rgba(53,208,127,.12), 0 0 15px rgba(53,208,127,.52); }
}

html {
    scroll-behavior: smooth;
}

body.fl-site {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--fl-bg);
    color: var(--fl-ink);
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

.fl-header *, .fl-hero *, .fl-section *, .fl-cta *, .fl-auth *, .fl-footer * {
    box-sizing: border-box;
}

.fl-skip-link {
    position: fixed;
    z-index: 10000;
    top: 10px;
    left: 10px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    padding: 0;
    pointer-events: none;
    border-radius: 10px;
    background: var(--fl-surface);
    color: var(--fl-ink);
    font: 620 14px/1.2 "Manrope", sans-serif;
    text-decoration: none;
}

/* Keyboard-only helper, never a visible touch/menu control. */
.fl-skip-link:focus-visible {
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    padding: 10px 14px;
    pointer-events: auto;
    outline: 2px solid var(--fl-primary);
    outline-offset: 3px;
}

.fl-container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.fl-section {
    position: relative;
    padding: 104px 0;
}

.fl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: var(--fl-primary-deep);
    font-size: 13px;
    font-weight: 620;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.fl-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--fl-accent);
}

.fl-section-title {
    max-width: 790px;
    margin: 0;
    color: var(--fl-ink);
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 620;
    line-height: 1.05;
    letter-spacing: -.052em;
}

.fl-section-copy {
    max-width: 620px;
    margin: 20px 0 0;
    color: var(--fl-muted);
    font-size: 17px;
    line-height: 1.65;
}

.fl-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
}

.fl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fl-spin { to { transform: rotate(360deg); } }
@keyframes fl-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -7px; } }

.fl-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 640;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.fl-button:hover { transform: translateY(-2px); }
.fl-button:focus-visible, .fl-header a:focus-visible, .fl-nav-toggle:focus-visible, .fl-hero button:focus-visible, .fl-hero input:focus-visible {
    outline: 3px solid rgba(103, 87, 245, .28);
    outline-offset: 3px;
}

.fl-button--small { min-height: 44px; padding: 0 17px; border-radius: 13px; font-size: 14px; }
.fl-button--dark { background: var(--fl-ink); color: #fff; box-shadow: 0 10px 30px rgba(17, 19, 26, .15); }
.fl-button--dark:hover { background: #292c36; box-shadow: 0 16px 34px rgba(17, 19, 26, .20); }
.fl-button--primary { background: var(--fl-primary); color: #fff; box-shadow: 0 16px 38px rgba(103, 87, 245, .28); }
.fl-button--primary:hover { background: var(--fl-primary-deep); box-shadow: 0 20px 45px rgba(103, 87, 245, .34); }
.fl-button--ghost { border-color: var(--fl-line); background: rgba(255,255,255,.72); color: var(--fl-ink); }
.fl-button--ghost:hover { border-color: #cfd3df; background: #fff; }

@media (max-width: 720px) {
    .fl-container { width: min(100% - 28px, 1240px); }
    .fl-button { min-height: 50px; padding-inline: 18px; }
    .fl-section { padding: 72px 0; }
    .fl-section-title { font-size: clamp(34px, 10.5vw, 45px); }
    .fl-section-copy { margin-top: 15px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fl-button { transition: none; }
    .fl-reveal { opacity: 1; transform: none; transition: none; }
}

/* 01-access.css */
.fl-access-dialog,.fl-access-page{font-family:inherit;color:var(--fl-ink)}
.fl-access-dialog,.fl-access-page,.fl-access-dialog *,.fl-access-page *{box-sizing:border-box}
.fl-access-dialog{display:none;width:min(540px,calc(100vw - 36px));max-height:calc(100dvh - 40px);overflow:auto;margin:auto;padding:40px;border:1px solid var(--fl-line);border-radius:20px;background:linear-gradient(140deg,rgba(132,107,255,.08),transparent 50%),var(--fl-surface);color:var(--fl-ink);box-shadow:0 30px 100px #0004}
.fl-access-dialog[open]{display:block;animation:fl-access-enter .26s cubic-bezier(.2,.8,.2,1) both}
.fl-access-dialog::backdrop{background:rgba(10,12,20,.58);backdrop-filter:blur(7px)}
.fl-access-close{position:absolute;top:17px;right:17px;display:grid;place-items:center;width:36px;height:36px;padding:7px;border:1px solid var(--fl-line);border-radius:10px;background:var(--fl-bg);color:var(--fl-muted);cursor:pointer}
.fl-access-close svg,.fl-access-symbol svg,.fl-access-benefits svg{fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.fl-access-symbol{display:grid;place-items:center;width:64px;height:64px;margin-bottom:25px;border-radius:17px;background:linear-gradient(145deg,#8872ff,#5e49d7);color:#fff;box-shadow:0 10px 30px #7155e52b}.fl-access-symbol svg{width:34px;height:34px}
.fl-access-eyebrow{display:block;margin-bottom:13px;color:var(--fl-primary-deep);font-size:12px;line-height:1.6}
.fl-access-dialog h2{margin:0;font-size:32px;font-weight:500;line-height:1.15;letter-spacing:-.04em;max-width:410px}.fl-access-dialog>p,.fl-access-page__card>p{margin:18px 0 0;color:var(--fl-muted);font-size:15px;line-height:1.8}
.fl-access-benefits{display:flex;gap:12px 20px;flex-wrap:wrap;margin:23px 0 28px;font-size:12px;color:var(--fl-muted)}.fl-access-benefits span{display:inline-flex;align-items:center;gap:7px}.fl-access-benefits svg{width:18px;height:18px;color:var(--fl-primary-deep);flex-shrink:0}
.fl-access-actions{display:flex;gap:10px;flex-wrap:wrap}.fl-access-actions>a{display:inline-flex;align-items:center;justify-content:center;gap:18px;min-height:48px;flex:1;padding:13px 18px;border-radius:10px;text-decoration:none;font-size:14px;font-weight:500;line-height:1.5;white-space:nowrap;transition:background .2s,transform .2s}
.fl-access-actions>.fl-access-primary{background:#6951ef;color:#fff;border:1px solid #6951ef}.fl-access-actions>.fl-access-primary:hover{background:#5a43db;transform:translateY(-1px)}.fl-access-actions>.fl-access-secondary{color:var(--fl-ink);border:1px solid var(--fl-line);background:var(--fl-bg)}.fl-access-actions>.fl-access-secondary:hover{border-color:var(--fl-primary)}
.fl-access-dialog>p.fl-access-footnote{font-size:11px;margin-top:19px;text-align:center}.fl-access-dialog :focus-visible,.fl-access-page :focus-visible{outline:2px solid var(--fl-primary);outline-offset:4px}
.fl-access-page{padding:95px 0 110px;min-height:65vh;display:grid;align-items:center}.fl-access-page__card{max-width:720px;margin:auto;padding:48px;border:1px solid var(--fl-line);border-radius:20px;background:linear-gradient(135deg,rgba(132,107,255,.1),transparent 65%),var(--fl-surface)}.fl-access-page h1{font-size:clamp(30px,4vw,45px);font-weight:450;letter-spacing:-.04em;line-height:1.15;margin:0}.fl-access-page .fl-access-actions{margin-top:30px;max-width:480px}
@keyframes fl-access-enter{from{opacity:0;transform:translateY(22px) scale(.985)}to{opacity:1;transform:none}}
@media(max-width:540px){.fl-access-dialog{padding:32px 24px;border-radius:17px}.fl-access-dialog h2{font-size:28px}.fl-access-dialog>p{font-size:14px}.fl-access-actions{flex-direction:column}.fl-access-actions>a{width:100%;flex:auto}.fl-access-symbol{width:56px;height:56px}.fl-access-benefits{gap:9px 16px;margin:20px 0}.fl-access-page{padding:45px 0 65px}.fl-access-page__card{padding:30px 24px}}
@media(prefers-reduced-motion:reduce){.fl-access-dialog[open]{animation:none}.fl-access-actions>a{transition:none}}

/* 10-header.css */
.fl-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    padding: 14px 24px 0;
}

.fl-header__inner {
    display: grid;
    width: min(1240px, 100%);
    min-height: 64px;
    margin: 0 auto;
    padding: 9px 10px 9px 18px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 50px rgba(31, 34, 50, .08);
    backdrop-filter: blur(18px) saturate(150%);
}

.fl-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fl-ink);
    text-decoration: none;
}

.fl-brand__mark {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 11px;
    background: linear-gradient(145deg, #806fff, #5544e9 72%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.24), 0 9px 20px rgba(103,87,245,.24);
    transform: rotate(-4deg);
}

.fl-brand__mark::before {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 13px;
    height: 13px;
    border-radius: 0 10px 0 7px;
    background: rgba(255,255,255,.72);
}

.fl-brand__mark::after,
.fl-brand__mark i::before,
.fl-brand__mark i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 4px;
    border-radius: 9px;
    background: var(--fl-accent);
    transform: translate(-50%, -50%);
}

.fl-brand__mark i::before { transform: translate(-50%, -50%) rotate(90deg); }
.fl-brand__mark i::after { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.fl-brand__word { font-size: 20px; font-weight: 680; letter-spacing: -.55px; }
.fl-brand__word::first-letter { color: var(--fl-primary); }
.fl-brand__badge { margin-left: -3px; padding: 4px 7px; border-radius: 999px; background: #eeecff; color: var(--fl-primary-deep); font-size: 12px; font-weight: 590; letter-spacing: .055em; text-transform: uppercase; }

.fl-nav { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 4px; }
.fl-nav a,
.fl-nav__placeholder,
.fl-header__login { padding: 10px 10px; border-radius: 10px; color: #454a59; font-size: 13px; font-weight: 540; line-height: 1.2; text-decoration: none; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.fl-nav a:hover, .fl-header__login:hover { background: #f1f2f7; color: var(--fl-ink); }
.fl-nav a[aria-current="page"] { background: #f0efff; color: var(--fl-primary-deep); }
.fl-nav__placeholder { cursor: default; }
.fl-nav .fl-nav__primary-action {
    display: inline-flex;
    min-height: 42px;
    margin-right: 4px;
    padding: 0 15px;
    align-items: center;
    gap: 9px;
    border-radius: 13px;
    background: var(--fl-primary);
    color: #fff;
    font-weight: 630;
    box-shadow: 0 10px 24px rgba(103,87,245,.2);
}
.fl-nav .fl-nav__primary-action:hover { background: var(--fl-primary-deep); color: #fff; transform: translateY(-1px); }
.fl-nav__primary-action > span { font-size: 15px; }
.fl-header__actions { display: flex; min-width: 0; align-items: center; gap: 5px; }
.fl-theme-toggle {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    padding: 0;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--fl-line);
    border-radius: 13px;
    background: rgba(255,255,255,.58);
    color: #626878;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.fl-theme-toggle:hover { border-color: #cfcbea; background: #f3f1ff; color: var(--fl-primary-deep); transform: translateY(-1px); }
.fl-theme-toggle:focus-visible { outline: 3px solid rgba(103,87,245,.28); outline-offset: 3px; }
.fl-theme-toggle__sun,
.fl-theme-toggle__moon { position: absolute; display: block; width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: opacity .22s ease, transform .28s ease; }
.fl-theme-toggle__sun { color: #cf8216; }
.fl-theme-toggle__moon { color: #d4ceff; opacity: 0; transform: translateY(12px) rotate(-24deg); }
html[data-theme="dark"] .fl-theme-toggle__sun { opacity: 0; transform: translateY(-12px) rotate(35deg); }
html[data-theme="dark"] .fl-theme-toggle__moon { opacity: 1; transform: translateY(0) rotate(0); }
.fl-nav__mobile-actions { display: none; }
.fl-header-profile { display: flex; min-width: 0; padding: 4px 7px 4px 4px; align-items: center; gap: 9px; border: 0; border-radius: 14px; background: transparent; color: var(--fl-ink); font: inherit; text-align: left; text-decoration: none; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.fl-header-profile:hover { background: #f1f2f7; transform: translateY(-1px); }
.fl-header-profile:focus-visible { outline: 3px solid rgba(103,87,245,.24); outline-offset: 2px; }
.fl-header-profile__avatar { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; overflow: hidden; border-radius: 11px; background: linear-gradient(145deg, #6757f5, #9670fa); color: #fff; font-size: 12px; font-weight: 600; }
.fl-header-profile__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fl-header-profile__copy { display: block; min-width: 0; max-width: 118px; }
.fl-header-profile__copy strong, .fl-header-profile__copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fl-header-profile__copy strong { font-size: 11px; font-weight: 590; }
.fl-header-profile__copy small { margin-top: 2px; color: #838895; font-size: 8px; }
.fl-header-profile__chevron { width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: #858a97; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.fl-header-account { position: relative; min-width: 0; }
.fl-header-account::after { content: ""; position: absolute; top: 100%; right: 0; width: 100%; height: 9px; }
.fl-header-account__menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    width: 278px;
    padding: 9px;
    gap: 3px;
    border: 1px solid rgba(224,222,237,.95);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 65px rgba(31,34,50,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) scale(.98);
    transform-origin: top right;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    backdrop-filter: blur(18px) saturate(145%);
}
.fl-header-account:hover .fl-header-account__menu,
.fl-header-account:focus-within .fl-header-account__menu,
.fl-header-account.is-open .fl-header-account__menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.fl-header-account:hover .fl-header-profile__chevron,
.fl-header-account:focus-within .fl-header-profile__chevron,
.fl-header-account.is-open .fl-header-profile__chevron { transform: rotate(180deg); }
.fl-header-account__menu > a,
.fl-header-account__menu > button,
.fl-header-account__menu > form > button {
    display: grid;
    width: 100%;
    min-height: 49px;
    padding: 7px 9px;
    grid-template-columns: 36px minmax(0,1fr);
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--fl-ink);
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.fl-header-account__menu > a:hover,
.fl-header-account__menu > button:hover,
.fl-header-account__menu > form > button:hover { background: #f3f2fa; color: var(--fl-primary-deep); }
.fl-header-account__menu :is(a,button):focus-visible { outline: 3px solid rgba(103,87,245,.22); outline-offset: 1px; }
.fl-header-account__menu > form { margin: 0; }
.fl-header-account__menu > form > input { display: none; }
.fl-header-account__menu strong,
.fl-header-account__menu small { display: block; }
.fl-header-account__menu strong { font-size: 12px; font-weight: 610; line-height: 1.3; }
.fl-header-account__menu small { margin-top: 3px; color: #858a97; font-size: 9px; line-height: 1.3; }
.fl-header-account__icon { display: grid; position: relative; width: 36px; height: 36px; place-items: center; overflow: hidden; border: 1px solid #e6e3f5; border-radius: 11px; background: #f7f6fd; color: #5b4de2; }
.fl-header-account__icon > svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.fl-header-theme-switch > svg { position: absolute; }
.fl-header-account__divider { height: 1px; margin: 4px 6px; background: #eceaf3; }
.fl-header-account__logout { color: #b54658!important; }
.fl-header-account__logout .fl-header-account__icon { border-color: #f2dfe3; background: #fff6f7; color: #c34d61; }
.fl-nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 12px; background: #f1f2f7; cursor: pointer; }
.fl-nav-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--fl-ink); transition: transform .2s ease; }

@media (max-width: 1180px) {
    .fl-header__inner { grid-template-columns: auto 1fr auto auto; justify-content: space-between; gap: 10px; }
    .fl-nav-toggle { display: block; grid-column: 4; grid-row: 1; }
    .fl-header__actions { grid-column: 3; grid-row: 1; }
    .fl-header-profile__copy { display: none; }
    .fl-nav { display: none; grid-column: 1 / -1; width: 100%; padding: 8px 0 2px; align-items: stretch; flex-direction: column; }
    .fl-header.is-open .fl-nav { display: flex; }
    .fl-header.is-open .fl-nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .fl-header.is-open .fl-nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .fl-nav a, .fl-nav__placeholder { padding: 12px 14px; font-size: 15px; }
    .fl-nav .fl-nav__primary-action { justify-content: space-between; margin: 0 0 5px; padding: 0 14px; }
    .fl-nav .fl-header-profile { padding: 8px; }
}

@media (max-width: 720px) {
    .fl-header { padding: 9px 10px 0; }
    .fl-header__inner { min-height: 58px; padding: 7px 8px 7px 13px; border-radius: 17px; }
    .fl-brand__mark { width: 32px; height: 32px; border-radius: 10px; }
    .fl-brand__word { font-size: 18px; }
    .fl-brand__badge { display: none; }
    .fl-header__actions > .fl-button { display: none; }
    .fl-header__actions { justify-self: end; }
    .fl-header-profile { padding: 3px; }
    .fl-header-profile__avatar { width: 38px; height: 38px; border-radius: 12px; }
    .fl-header-profile__chevron { display: none; }
    .fl-header__login { display: none; }
    .fl-nav__mobile-actions { display: grid; margin-top: 7px; padding-top: 11px; grid-template-columns: 1fr; gap: 7px; border-top: 1px solid var(--fl-line); }
    .fl-nav__mobile-actions .fl-header-profile__copy { display: block; max-width: none; }
    .fl-nav__mobile-actions .fl-header__login { display: flex; }
    .fl-nav__mobile-actions .fl-button { width: 100%; }
}

/* Global header actions and shared account navigation. */
.fl-header-icon {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--fl-line);
    border-radius: 13px;
    background: rgba(255,255,255,.58);
    color: #626878;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.fl-header-icon:hover { border-color:#cfcbea; background:#f3f1ff; color:var(--fl-primary-deep); transform:translateY(-1px); }
.fl-header-icon:focus-visible { outline:3px solid rgba(103,87,245,.28); outline-offset:3px; }
.fl-header-icon > svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.fl-header-messages > span,
.fl-header-notifications > span,
.fl-header-mobile-messages > b {
    display:grid;
    min-width:19px;
    height:19px;
    padding:0 5px;
    place-items:center;
    border:2px solid rgba(255,255,255,.95);
    border-radius:999px;
    background:#f05f72;
    color:#fff;
    font-size:9px;
    font-weight:720;
    line-height:1;
    font-variant-numeric:tabular-nums;
}
.fl-header-messages > span,
.fl-header-notifications > span { position:absolute; top:-6px; right:-6px; }
.fl-header-messages > span[hidden],
.fl-header-notifications > span[hidden],
.fl-header-mobile-messages > b[hidden] { display:none; }
.fl-header-mobile-messages { display:flex!important; align-items:center; justify-content:space-between; gap:12px; }
.fl-header-mobile-messages > b { position:static; border-width:0; }

.fl-header-notification-center { position:relative; flex:0 0 auto; }
.fl-header-notification-panel,
.fl-header-notification-panel * { box-sizing:border-box; }
.fl-header-notification-panel {
    position:absolute;
    z-index:30;
    top:calc(100% + 10px);
    right:0;
    display:grid;
    width:min(410px,calc(100vw - 28px));
    max-height:min(620px,calc(100dvh - 96px));
    overflow:hidden;
    grid-template-rows:auto minmax(0,1fr) auto auto;
    border:1px solid rgba(222,220,235,.96);
    border-radius:19px;
    background:rgba(255,255,255,.985);
    box-shadow:0 28px 75px rgba(31,34,50,.2);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-7px) scale(.985);
    transform-origin:top right;
    transition:opacity .18s ease,visibility .18s ease,transform .2s ease;
    backdrop-filter:blur(22px) saturate(150%);
}
.fl-header-notification-center.is-open .fl-header-notification-panel { opacity:1; visibility:visible; pointer-events:auto; transform:none; }
.fl-header-notification-center.is-open>.fl-header-notifications { border-color:#cfcbea; background:#f3f1ff; color:var(--fl-primary-deep); }
.fl-header-notification-panel>header { display:flex; min-height:82px; padding:16px 17px 14px; align-items:center; justify-content:space-between; gap:14px; border-bottom:1px solid #ecebf2; }
.fl-header-notification-panel>header>div { min-width:0; }
.fl-header-notification-panel>header small,
.fl-header-notification-panel>header strong,
.fl-header-notification-panel>header span { display:block; }
.fl-header-notification-panel>header small { color:#6757f5; font-size:8px; font-weight:680; letter-spacing:.1em; text-transform:uppercase; }
.fl-header-notification-panel>header strong { margin-top:3px; color:var(--fl-ink); font-size:17px; font-weight:660; letter-spacing:-.025em; }
.fl-header-notification-panel>header span { margin-top:3px; color:#858a97; font-size:9px; }
.fl-header-notification-panel>header>button { flex:0 0 auto; min-height:31px; padding:0 10px; border:0; border-radius:9px; background:#efedff; color:#5749dd; font:610 9px/1 Manrope,sans-serif; cursor:pointer; }
.fl-header-notification-panel>header>button:hover { background:#dfdbff; }
.fl-header-notification-panel>header>button[hidden] { display:none; }
.fl-header-notification-list { min-height:0; overflow-x:hidden; overflow-y:auto; overscroll-behavior:contain; scrollbar-width:thin; }
.fl-header-notification-item { position:relative; display:grid; min-width:0; min-height:94px; padding:13px 15px; grid-template-columns:43px minmax(0,1fr) auto; align-items:start; gap:11px; border-bottom:1px solid #efeff4; color:var(--fl-ink); text-decoration:none; transition:background .18s ease; }
.fl-header-notification-item:hover { background:#f7f6fc; }
.fl-header-notification-item.is-unread { background:#f4f2ff; }
.fl-header-notification-item.is-unread:hover { background:#efecff; }
.fl-header-notification-item.is-unread::before { content:""; position:absolute; top:17px; right:12px; width:7px; height:7px; border-radius:50%; background:#6757f5; box-shadow:0 0 0 3px rgba(103,87,245,.12); }
.fl-header-notification-item__avatar { display:grid; position:relative; width:43px; height:43px; place-items:center; overflow:hidden; border:1px solid #e0dcf4; border-radius:13px; background:linear-gradient(145deg,#ece8ff,#f7f5ff); color:#594add; font-size:10px; font-weight:690; }
.fl-header-notification-item__avatar img { display:block; width:100%; height:100%; object-fit:cover; }
.fl-header-notification-item__type { position:absolute; right:-4px; bottom:-4px; display:grid; width:18px; height:18px; place-items:center; border:2px solid #fff; border-radius:7px; background:#6757f5; color:#fff; font-size:9px; font-style:normal; }
.fl-header-notification-item__copy { min-width:0; padding-right:4px; }
.fl-header-notification-item__copy>span { display:flex; min-width:0; align-items:center; gap:5px; }
.fl-header-notification-item__copy>span strong { overflow:hidden; font-size:11px; font-weight:650; text-overflow:ellipsis; white-space:nowrap; }
.fl-header-notification-item__copy>span i { color:#9a9eaa; font-size:8px; font-style:normal; }
.fl-header-notification-item__copy>small { display:block; margin-top:3px; overflow:hidden; color:#6757f5; font-size:8px; font-weight:620; text-overflow:ellipsis; white-space:nowrap; }
.fl-header-notification-item__copy>p { display:-webkit-box; margin:6px 0 0; overflow:hidden; color:#666c79; font-size:10px; line-height:1.45; -webkit-box-orient:vertical; -webkit-line-clamp:2; }
.fl-header-notification-item>time { padding:2px 11px 0 0; color:#999daa; font-size:8px; white-space:nowrap; }
.fl-header-notification-loading,
.fl-header-notification-empty { grid-row:2; align-self:center; padding:35px 28px; color:#858a97; text-align:center; }
.fl-header-notification-loading[hidden],
.fl-header-notification-empty[hidden] { display:none; }
.fl-header-notification-loading>span { display:block; width:24px; height:24px; margin:0 auto 10px; border:2px solid #dfdcf4; border-top-color:#6757f5; border-radius:50%; animation:fl-notification-spin .75s linear infinite; }
.fl-header-notification-loading p,
.fl-header-notification-empty p { margin:8px 0 0; font-size:9px; line-height:1.55; }
.fl-header-notification-empty>span { display:grid; width:45px; height:45px; margin:0 auto 11px; place-items:center; border-radius:14px; background:#eeecff; color:#5749dd; font-size:18px; }
.fl-header-notification-empty strong { color:var(--fl-ink); font-size:12px; }
@keyframes fl-notification-spin { to { transform:rotate(360deg); } }
.fl-header-notification-panel>footer { display:flex; min-height:48px; padding:8px 12px; align-items:center; justify-content:center; border-top:1px solid #ecebf2; background:#fafafd; }
.fl-header-notification-panel>footer:has(button[hidden]) { display:none; }
.fl-header-notification-panel>footer button { min-height:31px; padding:0 14px; border:0; border-radius:9px; background:transparent; color:#5749dd; font:620 9px/1 Manrope,sans-serif; cursor:pointer; }
.fl-header-notification-panel>footer button:hover { background:#efedff; }
.fl-header-notification-panel>footer button[hidden] { display:none; }
.fl-header-notification-panel>[data-fl-notification-status] { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

.fl-account-menu {
    display:grid;
    min-width:0;
    padding:11px;
    gap:4px;
    border:1px solid var(--fl-line);
    border-radius:18px;
    background:rgba(255,255,255,.9);
    box-shadow:0 16px 42px rgba(38,34,82,.05);
    backdrop-filter:blur(16px);
}
.fl-profile-workspace > .fl-account-menu { grid-area:nav; }
.fl-account-menu__label {
    padding:7px 9px 9px;
    color:#747987;
    font-size:10px;
    font-weight:640;
    letter-spacing:.085em;
    text-transform:uppercase;
}
.fl-account-menu__item {
    display:grid;
    min-width:0;
    min-height:60px;
    padding:8px 9px;
    grid-template-columns:38px minmax(0,1fr) auto;
    align-items:center;
    gap:10px;
    border:1px solid transparent;
    border-radius:13px;
    color:var(--fl-ink);
    text-decoration:none;
    transition:border-color .2s ease,background .2s ease,color .2s ease,transform .2s ease;
}
.fl-account-menu__item:hover { border-color:#dedaf6; background:#f4f2ff; color:var(--fl-primary-deep); transform:translateX(2px); }
.fl-account-menu__item:focus-visible { outline:3px solid rgba(103,87,245,.24); outline-offset:2px; }
.fl-account-menu__item[aria-current="page"] { border-color:#d7d1ff; background:#f1efff; }
.fl-account-menu__icon {
    display:grid;
    width:38px;
    height:38px;
    place-items:center;
    border:1px solid #e5e3f5;
    border-radius:11px;
    background:#f7f6fd;
    color:#5a4be2;
}
.fl-account-menu__item[aria-current="page"] .fl-account-menu__icon { border-color:transparent; background:var(--fl-primary); color:#fff; }
.fl-account-menu__icon svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.fl-account-menu__copy { min-width:0; }
.fl-account-menu__copy strong,
.fl-account-menu__copy small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.fl-account-menu__copy strong { font-size:12px; font-weight:620; line-height:1.3; }
.fl-account-menu__copy small { margin-top:3px; color:#858a97; font-size:9px; line-height:1.35; }
.fl-account-menu__tail { display:flex; align-items:center; justify-content:flex-end; gap:6px; }
.fl-account-menu__tail em { color:#9691a8; font-size:19px; font-style:normal; font-weight:420; }
.fl-account-menu__badge {
    display:grid;
    min-width:24px;
    height:24px;
    padding:0 7px;
    place-items:center;
    border-radius:9px;
    background:#f05f72;
    color:#fff;
    font-size:10px;
    font-weight:720;
    line-height:1;
    font-variant-numeric:tabular-nums;
    box-shadow:0 6px 16px rgba(240,95,114,.22);
}
.fl-account-menu__badge[hidden] { display:none; }

.fl-professional-network {
    min-width:0;
    overflow:hidden;
    border:1px solid var(--fl-line);
    border-radius:18px;
    background:rgba(255,255,255,.9);
    box-shadow:0 15px 42px rgba(38,34,82,.045);
    backdrop-filter:blur(14px);
}
.fl-professional-network > header { display:flex; padding:18px 19px 15px; align-items:flex-start; justify-content:space-between; gap:10px; border-bottom:1px solid #ececf2; }
.fl-professional-network > header span { color:var(--fl-primary-deep); font-size:10px; font-weight:640; letter-spacing:.08em; text-transform:uppercase; }
.fl-professional-network > header h2 { margin:5px 0 0; font-size:16px; font-weight:620; line-height:1.35; letter-spacing:-.02em; }
.fl-professional-network > header a { display:inline-flex; flex:0 0 auto; align-items:center; gap:5px; color:var(--fl-primary-deep); font-size:10px; font-weight:590; text-decoration:none; }
.fl-professional-network > header a b { font-size:13px; font-weight:500; }
.fl-professional-network__stats { display:grid; padding:14px 14px 0; grid-template-columns:repeat(3,minmax(0,1fr)); gap:7px; }
.fl-professional-network__stats > div { min-width:0; padding:12px 9px; border:1px solid #e7e7ed; border-radius:13px; background:#fafafd; }
.fl-professional-network__stats strong,
.fl-professional-network__stats span { display:block; }
.fl-professional-network__stats strong { font-size:23px; font-weight:640; line-height:1; letter-spacing:-.04em; font-variant-numeric:tabular-nums; }
.fl-professional-network__stats span { margin-top:6px; color:#858a97; font-size:9px; }
.fl-professional-network__people { padding:16px 14px 14px; }
.fl-professional-network__people > div { display:flex; margin-bottom:9px; align-items:center; justify-content:space-between; gap:10px; }
.fl-professional-network__people > div > span { color:#777d8a; font-size:10px; font-weight:580; }
.fl-professional-network__people > div > b { display:grid; min-width:24px; height:24px; padding:0 6px; place-items:center; border-radius:8px; background:#eeecff; color:#5749dd; font-size:10px; }
.fl-professional-network__people ul { display:grid; margin:0; padding:0; gap:2px; list-style:none; }
.fl-professional-network__people li a { display:grid; min-width:0; min-height:47px; padding:5px 6px; grid-template-columns:36px minmax(0,1fr) 12px; align-items:center; gap:9px; border-radius:11px; color:var(--fl-ink); text-decoration:none; transition:background .18s ease; }
.fl-professional-network__people li a:hover { background:#f4f3fb; }
.fl-professional-network__people li img,
.fl-professional-network__people li i { display:grid; width:36px; height:36px; place-items:center; overflow:hidden; border-radius:50%; background:#eeecff; color:#5749dd; object-fit:cover; font-style:normal; font-size:9px; font-weight:650; }
.fl-professional-network__people li .fl-presence-avatar { width:36px; height:36px; overflow:visible; }
.fl-professional-network__people li span { min-width:0; overflow:hidden; font-size:11px; font-weight:570; text-overflow:ellipsis; white-space:nowrap; }
.fl-professional-network__people li b { color:#9995aa; font-size:16px; font-weight:400; }
.fl-professional-network__people > p { margin:4px 4px 2px; color:var(--fl-muted); font-size:10px; line-height:1.55; }

html[data-theme="dark"] .fl-header-icon { border-color:#343945; background:#242832; color:#ccd0d9; }
html[data-theme="dark"] .fl-header-icon:hover { border-color:#5e5684; background:#302c49; color:#c7c0ff; }
html[data-theme="dark"] .fl-header-messages > span { border-color:#171a21; }
html[data-theme="dark"] .fl-header-notifications > span { border-color:#171a21; }
html[data-theme="dark"] .fl-header-notification-center.is-open>.fl-header-notifications { border-color:#5e5684; background:#302c49; color:#c7c0ff; }
html[data-theme="dark"] .fl-header-notification-panel { border-color:#363b47; background:rgba(25,28,36,.985); box-shadow:0 28px 75px rgba(0,0,0,.48); }
html[data-theme="dark"] .fl-header-notification-panel>header,
html[data-theme="dark"] .fl-header-notification-panel>footer,
html[data-theme="dark"] .fl-header-notification-item { border-color:#303540; }
html[data-theme="dark"] .fl-header-notification-panel>header strong,
html[data-theme="dark"] .fl-header-notification-empty strong { color:#eef0f4; }
html[data-theme="dark"] .fl-header-notification-panel>header span,
html[data-theme="dark"] .fl-header-notification-loading,
html[data-theme="dark"] .fl-header-notification-empty { color:#969daa; }
html[data-theme="dark"] .fl-header-notification-panel>header>button,
html[data-theme="dark"] .fl-header-notification-panel>footer button { background:#302c4b; color:#c9c2ff; }
html[data-theme="dark"] .fl-header-notification-panel>footer { background:#171a21; }
html[data-theme="dark"] .fl-header-notification-item { color:#eef0f4; }
html[data-theme="dark"] .fl-header-notification-item:hover { background:#252936; }
html[data-theme="dark"] .fl-header-notification-item.is-unread { background:#292640; }
html[data-theme="dark"] .fl-header-notification-item.is-unread:hover { background:#302c4b; }
html[data-theme="dark"] .fl-header-notification-item__avatar { border-color:#443d68; background:linear-gradient(145deg,#332d50,#29263e); color:#cec7ff; }
html[data-theme="dark"] .fl-header-notification-item__type { border-color:#191c24; }
html[data-theme="dark"] .fl-header-notification-item__copy>p { color:#b7bcc7; }
html[data-theme="dark"] .fl-header-notification-loading>span { border-color:#3d3a55; border-top-color:#988cff; }
html[data-theme="dark"] .fl-header-notification-empty>span { background:#302c4b; color:#c9c2ff; }
html[data-theme="dark"] .fl-header-account__menu { border-color:#363b47; background:rgba(25,28,36,.98); box-shadow:0 24px 65px rgba(0,0,0,.38); }
html[data-theme="dark"] .fl-header-account__menu > a:hover,
html[data-theme="dark"] .fl-header-account__menu > button:hover,
html[data-theme="dark"] .fl-header-account__menu > form > button:hover { background:#252936; color:#c9c2ff; }
html[data-theme="dark"] .fl-header-account__menu small { color:#969daa; }
html[data-theme="dark"] .fl-header-account__icon { border-color:#383d49; background:#222630; color:#bcb4ff; }
html[data-theme="dark"] .fl-header-account__divider { background:#343844; }
html[data-theme="dark"] .fl-header-account__logout { color:#ff9cab!important; }
html[data-theme="dark"] .fl-header-account__logout .fl-header-account__icon { border-color:#59313a; background:#341e24; color:#ff9cab; }
html[data-theme="dark"] .fl-account-menu,
html[data-theme="dark"] .fl-professional-network { border-color:var(--fl-line); background:#191c24; color:var(--fl-ink); box-shadow:0 16px 48px rgba(0,0,0,.16); }
html[data-theme="dark"] .fl-account-menu__label,
html[data-theme="dark"] .fl-account-menu__copy small { color:#969daa; }
html[data-theme="dark"] .fl-account-menu__item:hover { border-color:#48415f; background:#252936; color:#c9c2ff; }
html[data-theme="dark"] .fl-account-menu__item[aria-current="page"] { border-color:#5c5183; background:#292640; }
html[data-theme="dark"] .fl-account-menu__icon { border-color:#383d49; background:#222630; color:#bcb4ff; }
html[data-theme="dark"] .fl-professional-network > header { border-color:#303540; }
html[data-theme="dark"] .fl-professional-network__stats > div { border-color:#303540; background:#15181f; }
html[data-theme="dark"] .fl-professional-network__stats span,
html[data-theme="dark"] .fl-professional-network__people > div > span { color:#969daa; }
html[data-theme="dark"] .fl-professional-network__people > div > b,
html[data-theme="dark"] .fl-professional-network__people li img,
html[data-theme="dark"] .fl-professional-network__people li i { background:#302c4b; color:#c9c2ff; }
html[data-theme="dark"] .fl-professional-network__people li a:hover { background:#252936; }

@media (max-width:1040px) {
    .fl-profile-workspace > .fl-account-menu,
    .fl-account-sidebar > .fl-account-menu { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .fl-profile-workspace > .fl-account-menu .fl-account-menu__label,
    .fl-account-sidebar > .fl-account-menu .fl-account-menu__label { grid-column:1 / -1; }
    .fl-account-sidebar > .fl-account-menu,
    .fl-account-sidebar > .fl-professional-network,
    .fl-profile-sidebar > .fl-professional-network { grid-column:1 / -1; }
}
@media (max-width:700px) {
    .fl-profile-workspace > .fl-account-menu,
    .fl-account-sidebar > .fl-account-menu { grid-template-columns:1fr; }
    .fl-profile-workspace > .fl-account-menu .fl-account-menu__label,
    .fl-account-sidebar > .fl-account-menu .fl-account-menu__label { grid-column:auto; }
    .fl-account-menu__item { min-height:56px; }
}

@media (max-width:720px) {
    .fl-header-notification-panel { position:fixed; top:76px; right:10px; left:10px; width:auto; max-height:calc(100dvh - 88px); border-radius:17px; transform:translateY(-6px) scale(.99); transform-origin:top center; }
    .fl-header-notification-panel>header { min-height:76px; padding:13px 14px; }
    .fl-header-notification-item { min-height:89px; padding:12px 13px; grid-template-columns:40px minmax(0,1fr) auto; gap:9px; }
    .fl-header-notification-item__avatar { width:40px; height:40px; border-radius:12px; }
    .fl-header-notification-item>time { padding-right:9px; }
}

/* Global realtime cards for incoming messages and account activity. */
.fl-chat-notifications,
.fl-chat-notifications * { box-sizing:border-box; }
.fl-chat-notifications {
    position:fixed;
    z-index:24000;
    right:max(22px, env(safe-area-inset-right));
    bottom:max(22px, env(safe-area-inset-bottom));
    display:grid;
    width:min(390px, calc(100vw - 32px));
    max-height:calc(100dvh - 110px);
    overflow-x:visible;
    overflow-y:auto;
    gap:12px;
    overscroll-behavior:contain;
    pointer-events:auto;
    scrollbar-width:thin;
    transition:bottom .22s ease;
}
.fl-chat-notifications:empty { pointer-events:none; }
.fl-chat-notifications [hidden] { display:none!important; }
body:has(.fl-profile-toast-region > .fl-profile-toast:not(.is-leaving)) .fl-chat-notifications,
body:has(.fl-work-toast-region > .fl-work-toast) .fl-chat-notifications { bottom:max(112px, env(safe-area-inset-bottom)); }
.fl-chat-notification {
    position:relative;
    width:100%;
    overflow:visible;
    padding:18px;
    border:1px solid rgba(218,218,230,.96);
    border-radius:17px;
    background:rgba(255,255,255,.97);
    color:#20232d;
    box-shadow:0 24px 70px rgba(33,28,71,.18), 0 3px 12px rgba(33,28,71,.07);
    backdrop-filter:blur(22px) saturate(145%);
    opacity:0;
    pointer-events:auto;
    transform:translate3d(24px,12px,0) scale(.97);
    transform-origin:100% 100%;
    transition:opacity .32s ease, transform .42s cubic-bezier(.2,.8,.2,1), border-color .2s ease, box-shadow .2s ease;
}
.fl-chat-notification::before {
    content:"";
    position:absolute;
    top:18px;
    bottom:18px;
    left:0;
    width:3px;
    border-radius:0 4px 4px 0;
    background:linear-gradient(180deg,#7666f6,#9b8cff);
    box-shadow:0 0 18px rgba(103,87,245,.45);
}
.fl-chat-notification.is-visible { opacity:1; transform:none; }
.fl-chat-notification.is-leaving { opacity:0; transform:translate3d(18px,8px,0) scale(.975); pointer-events:none; }
.fl-chat-notification.is-replying {
    border-color:rgba(113,96,238,.42);
    box-shadow:0 28px 78px rgba(56,43,133,.23), 0 4px 14px rgba(33,28,71,.08);
}
.fl-chat-notification__progress {
    position:absolute;
    right:11px;
    bottom:0;
    left:11px;
    height:2px;
    overflow:hidden;
    border-radius:2px 2px 0 0;
    background:linear-gradient(90deg,rgba(103,87,245,.18),rgba(103,87,245,.72));
    transform:scaleX(1);
    transform-origin:left center;
}
.fl-chat-notification.is-counting .fl-chat-notification__progress {
    animation:fl-chat-notification-progress var(--fl-chat-notification-lifetime, 9000ms) linear forwards;
}
.fl-chat-notification.is-paused .fl-chat-notification__progress { animation-play-state:paused; }
@keyframes fl-chat-notification-progress { to { transform:scaleX(0); } }
.fl-chat-notification__close {
    position:absolute;
    z-index:2;
    top:10px;
    right:10px;
    display:grid;
    width:31px;
    height:31px;
    padding:0;
    place-items:center;
    border:0;
    border-radius:9px;
    background:transparent;
    color:#969aa7;
    cursor:pointer;
    transition:background .18s ease,color .18s ease,transform .18s ease;
}
.fl-chat-notification__close:hover { background:#f0eff8; color:#5548cf; transform:rotate(3deg); }
.fl-chat-notification__close svg { width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; }
.fl-chat-notification__head { display:grid; min-width:0; padding-right:28px; grid-template-columns:48px minmax(0,1fr); align-items:center; gap:12px; }
.fl-chat-notification__avatar {
    display:grid;
    width:48px;
    height:48px;
    overflow:hidden;
    place-items:center;
    border:1px solid #e5e2f8;
    border-radius:50%;
    background:linear-gradient(145deg,#f0edff,#e5e1ff);
    color:#5a4ad7;
    font-size:13px;
    font-weight:680;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(74,60,156,.12);
}
.fl-chat-notification__avatar img { display:block; width:100%; height:100%; object-fit:cover; }
.fl-chat-notification__heading { display:grid; min-width:0; grid-template-columns:minmax(0,1fr) auto; align-items:end; column-gap:10px; }
.fl-chat-notification__heading small { grid-column:1 / -1; margin-bottom:3px; color:#7466dc; font-size:10px; font-weight:650; letter-spacing:.075em; line-height:1.25; text-transform:uppercase; }
.fl-chat-notification__heading > a { overflow:hidden; color:#20232d; font-size:15px; font-weight:650; line-height:1.3; text-decoration:none; text-overflow:ellipsis; white-space:nowrap; }
.fl-chat-notification__heading > a:hover { color:#5c4bdc; }
.fl-chat-notification__heading time { color:#9498a5; font-size:11px; line-height:1.4; font-variant-numeric:tabular-nums; }
.fl-chat-notification__message {
    display:-webkit-box;
    overflow:hidden;
    margin:14px 1px 0;
    color:#4f5360;
    font-size:13px;
    font-weight:430;
    line-height:1.55;
    white-space:pre-wrap;
    overflow-wrap:anywhere;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
}
.fl-activity-notification__subject {
    display:block;
    overflow:hidden;
    margin:13px 1px -7px;
    color:#303440;
    font-size:12px;
    font-weight:650;
    line-height:1.4;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.fl-activity-notification .fl-chat-notification__actions { justify-content:flex-start; }
.fl-activity-notification--new_follower::before {
    background:linear-gradient(180deg,#45b887,#61d8a4);
    box-shadow:0 0 18px rgba(69,184,135,.38);
}
.fl-chat-notification.is-replying .fl-chat-notification__message { -webkit-line-clamp:2; }
.fl-chat-notification__actions { display:flex; margin-top:14px; align-items:center; justify-content:space-between; gap:10px; }
.fl-chat-notification__actions > a,
.fl-chat-notification__reply-toggle {
    min-height:34px;
    border:0;
    background:transparent;
    color:#696e7c;
    font-family:inherit;
    font-size:11px;
    font-weight:590;
    line-height:1;
    text-decoration:none;
    cursor:pointer;
}
.fl-chat-notification__actions > a { display:inline-flex; align-items:center; }
.fl-chat-notification__actions > a:hover { color:#5547ce; }
.fl-chat-notification__reply-toggle { display:inline-flex; padding:0 12px; align-items:center; gap:7px; border-radius:10px; background:#efedff; color:#5547ce; }
.fl-chat-notification__reply-toggle:hover,
.fl-chat-notification__reply-toggle[aria-expanded="true"] { background:#dedaff; color:#493ac9; }
.fl-chat-notification__reply-toggle svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.fl-chat-notification__composer { position:relative; margin-top:13px; padding-top:13px; border-top:1px solid #eceaf2; }
.fl-chat-notification__composer[hidden] { display:none; }
.fl-chat-notification__field { display:block; }
.fl-chat-notification__field textarea {
    display:block;
    width:100%;
    min-height:76px;
    max-height:150px;
    resize:vertical;
    margin:0;
    padding:12px 13px;
    border:1px solid #dedde7;
    border-radius:12px;
    outline:0;
    background:#fafafd;
    color:#252832;
    font-family:inherit;
    font-size:13px;
    font-weight:440;
    line-height:1.5;
    box-shadow:inset 0 1px 2px rgba(34,31,60,.025);
    transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.fl-chat-notification__field textarea::placeholder { color:#999daa; }
.fl-chat-notification__field textarea:focus { border-color:#8173e8; background:#fff; box-shadow:0 0 0 3px rgba(103,87,245,.11); }
.fl-chat-notification__composer-footer { display:flex; margin-top:9px; align-items:center; justify-content:space-between; gap:10px; }
.fl-chat-notification__emoji-wrap { position:relative; }
.fl-chat-notification__emoji-toggle {
    display:grid;
    width:36px;
    height:36px;
    padding:0;
    place-items:center;
    border:1px solid #e2e0e9;
    border-radius:10px;
    background:#f8f7fb;
    font-size:19px;
    line-height:1;
    cursor:pointer;
    transition:border-color .18s ease,background .18s ease,transform .18s ease;
}
.fl-chat-notification__emoji-toggle:hover,
.fl-chat-notification__emoji-toggle[aria-expanded="true"] { border-color:#b9b1ed; background:#efedff; transform:translateY(-1px); }
.fl-chat-notification__emoji-toggle:disabled { opacity:.5; cursor:wait; transform:none; }
.fl-chat-notification__emoji-picker {
    position:absolute;
    z-index:4;
    bottom:44px;
    left:0;
    display:grid;
    width:266px;
    max-width:calc(100vw - 70px);
    max-height:130px;
    overflow:auto;
    padding:9px;
    grid-template-columns:repeat(6,1fr);
    gap:3px;
    border:1px solid #ddd9ec;
    border-radius:14px;
    background:rgba(255,255,255,.99);
    box-shadow:0 18px 50px rgba(33,28,71,.2);
    overscroll-behavior:contain;
}
.fl-chat-notification__emoji-picker[hidden] { display:none; }
.fl-chat-notification__emoji-picker button { display:grid; width:36px; height:36px; padding:0; place-items:center; border:0; border-radius:9px; background:transparent; font-size:21px; line-height:1; cursor:pointer; }
.fl-chat-notification__emoji-picker button:hover { background:#efedff; transform:scale(1.08); }
.fl-chat-notification__send {
    display:inline-flex;
    min-height:36px;
    padding:0 13px;
    align-items:center;
    gap:8px;
    border:0;
    border-radius:10px;
    background:#6757f5;
    color:#fff;
    font-family:inherit;
    font-size:11px;
    font-weight:620;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(103,87,245,.2);
    transition:background .18s ease,transform .18s ease,opacity .18s ease;
}
.fl-chat-notification__send:hover { background:#5848df; transform:translateY(-1px); }
.fl-chat-notification__send:disabled { opacity:.62; cursor:wait; transform:none; }
.fl-chat-notification__send svg { width:15px; height:15px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.fl-chat-notification__send.is-loading svg { animation:fl-chat-notification-send .7s ease-in-out infinite alternate; }
@keyframes fl-chat-notification-send { to { transform:translate(2px,-2px); } }
.fl-chat-notification__status { min-height:0; margin:7px 1px 0; color:#6f7480; font-size:10px; line-height:1.35; }
.fl-chat-notification__status:empty { display:none; }
.fl-chat-notification__status.is-error { color:#c94459; }
.fl-chat-notification__status.is-success { color:#25845c; font-weight:590; }
.fl-chat-notifications .fl-visually-hidden { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

html[data-theme="dark"] .fl-chat-notification {
    border-color:rgba(67,72,86,.96);
    background:rgba(25,28,36,.97);
    color:#eef0f5;
    box-shadow:0 28px 78px rgba(0,0,0,.43),0 3px 12px rgba(0,0,0,.24);
}
html[data-theme="dark"] .fl-chat-notification.is-replying { border-color:rgba(139,124,255,.54); box-shadow:0 28px 82px rgba(0,0,0,.52),0 0 0 1px rgba(139,124,255,.05); }
html[data-theme="dark"] .fl-chat-notification__close { color:#8e95a3; }
html[data-theme="dark"] .fl-chat-notification__close:hover { background:#2a2e3a; color:#c7c0ff; }
html[data-theme="dark"] .fl-chat-notification__avatar { border-color:#443d68; background:linear-gradient(145deg,#332d50,#29263e); color:#cec7ff; box-shadow:0 8px 20px rgba(0,0,0,.24); }
html[data-theme="dark"] .fl-chat-notification__heading small { color:#a99eff; }
html[data-theme="dark"] .fl-chat-notification__heading > a { color:#eef0f5; }
html[data-theme="dark"] .fl-chat-notification__heading > a:hover { color:#c7c0ff; }
html[data-theme="dark"] .fl-chat-notification__heading time { color:#8f96a4; }
html[data-theme="dark"] .fl-chat-notification__message { color:#c1c5cf; }
html[data-theme="dark"] .fl-activity-notification__subject { color:#eef0f5; }
html[data-theme="dark"] .fl-chat-notification__actions > a { color:#9da4b2; }
html[data-theme="dark"] .fl-chat-notification__actions > a:hover { color:#c7c0ff; }
html[data-theme="dark"] .fl-chat-notification__reply-toggle { background:#302c4b; color:#c7c0ff; }
html[data-theme="dark"] .fl-chat-notification__reply-toggle:hover,
html[data-theme="dark"] .fl-chat-notification__reply-toggle[aria-expanded="true"] { background:#3c365e; color:#e0dcff; }
html[data-theme="dark"] .fl-chat-notification__composer { border-color:#373b47; }
html[data-theme="dark"] .fl-chat-notification__field textarea { border-color:#3a3f4c; background:#15181f; color:#eef0f5; box-shadow:none; }
html[data-theme="dark"] .fl-chat-notification__field textarea::placeholder { color:#777f8e; }
html[data-theme="dark"] .fl-chat-notification__field textarea:focus { border-color:#7e70df; background:#171a22; box-shadow:0 0 0 3px rgba(139,124,255,.12); }
html[data-theme="dark"] .fl-chat-notification__emoji-toggle { border-color:#3b404c; background:#20242d; }
html[data-theme="dark"] .fl-chat-notification__emoji-toggle:hover,
html[data-theme="dark"] .fl-chat-notification__emoji-toggle[aria-expanded="true"] { border-color:#62598a; background:#302c4b; }
html[data-theme="dark"] .fl-chat-notification__emoji-picker { border-color:#424754; background:rgba(28,31,40,.99); box-shadow:0 20px 55px rgba(0,0,0,.5); }
html[data-theme="dark"] .fl-chat-notification__emoji-picker button:hover { background:#343048; }
html[data-theme="dark"] .fl-chat-notification__status { color:#9da4b2; }
html[data-theme="dark"] .fl-chat-notification__status.is-error { color:#ff98a8; }
html[data-theme="dark"] .fl-chat-notification__status.is-success { color:#70d3aa; }

@media (max-width:560px) {
    .fl-chat-notifications { right:12px; bottom:max(12px, env(safe-area-inset-bottom)); left:12px; width:auto; max-height:calc(100dvh - 92px); }
    body:has(.fl-profile-toast-region > .fl-profile-toast:not(.is-leaving)) .fl-chat-notifications,
    body:has(.fl-work-toast-region > .fl-work-toast) .fl-chat-notifications { bottom:max(100px, env(safe-area-inset-bottom)); }
    .fl-chat-notification { padding:16px; border-radius:15px; }
    .fl-chat-notification__head { grid-template-columns:43px minmax(0,1fr); gap:10px; }
    .fl-chat-notification__avatar { width:43px; height:43px; }
    .fl-chat-notification__message { margin-top:11px; font-size:12px; }
    .fl-chat-notification__actions { margin-top:11px; }
    .fl-chat-notification__emoji-picker { grid-template-columns:repeat(6,1fr); }
}
@media (prefers-reduced-motion:reduce) {
    .fl-chat-notification,
    .fl-chat-notification__send,
    .fl-chat-notification__emoji-toggle,
    .fl-chat-notification__emoji-picker button { transition:none!important; }
    .fl-chat-notification__progress,
    .fl-chat-notification__send.is-loading svg { animation:none!important; }
}

/* 99-theme.css */
/* Site-wide dark theme. Light remains the default and keeps the original palette. */
html[data-theme="dark"] {
    color-scheme: dark;
    --fl-ink: #f2f4fa;
    --fl-muted: #a8afbd;
    --fl-surface: #191c24;
    --fl-bg: #101217;
    --fl-line: #2d323d;
    --fl-primary: #8b7cff;
    --fl-primary-deep: #b8afff;
    --fl-success: #4fd6a1;
    --fl-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

html[data-theme="dark"] body.fl-site { background: #101217; color: var(--fl-ink); }
html[data-theme="dark"] body.fl-site::selection { background: rgba(139,124,255,.42); color: #fff; }
html[data-theme="dark"] .fl-button--dark { background: #2a2f3b; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
html[data-theme="dark"] .fl-button--dark:hover { background: #393f4d; }
html[data-theme="dark"] .fl-button--ghost { border-color: #363c48; background: rgba(26,29,38,.72); color: var(--fl-ink); }
html[data-theme="dark"] .fl-button--ghost:hover { border-color: #514969; background: #20242d; }
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select { caret-color: #b8afff; }

/* Header and theme control */
html[data-theme="dark"] .fl-header__inner { border-color: rgba(72,77,91,.72); background: rgba(20,23,30,.84); box-shadow: 0 15px 55px rgba(0,0,0,.3); }
html[data-theme="dark"] .fl-brand__badge { background: #292640; color: #c7c0ff; }
html[data-theme="dark"] .fl-nav a,
html[data-theme="dark"] .fl-nav__placeholder,
html[data-theme="dark"] .fl-header__login { color: #c6cad4; }
html[data-theme="dark"] .fl-nav a:hover,
html[data-theme="dark"] .fl-header__login:hover,
html[data-theme="dark"] .fl-header-profile:hover { background: #272b35; color: #fff; }
html[data-theme="dark"] .fl-nav a[aria-current="page"] { background: #302c4b; color: #d2ccff; }
html[data-theme="dark"] .fl-header-profile__copy small { color: #969daa; }
html[data-theme="dark"] .fl-nav .fl-nav__primary-action { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-nav .fl-nav__primary-action:hover { background: #7b6cf8; color: #fff; }
html[data-theme="dark"] .fl-nav-toggle,
html[data-theme="dark"] .fl-theme-toggle { border-color: #343945; background: #242832; color: #ccd0d9; }
html[data-theme="dark"] .fl-nav-toggle:hover,
html[data-theme="dark"] .fl-theme-toggle:hover { border-color: #5e5684; background: #302c49; color: #c7c0ff; }

/* Hero */
html[data-theme="dark"] .fl-hero {
    background: radial-gradient(circle at 13% 18%,rgba(185,243,74,.09),transparent 30%),radial-gradient(circle at 76% 19%,rgba(139,124,255,.17),transparent 36%),linear-gradient(180deg,#12141a 0%,#101217 78%,#101217 100%);
}
html[data-theme="dark"] .fl-eyebrow { border-color: rgba(139,124,255,.28); background: rgba(26,29,38,.76); color: #cbc5f4; box-shadow: 0 10px 32px rgba(0,0,0,.2); }
html[data-theme="dark"] .fl-search { border-color: #343946; background: rgba(24,27,35,.93); box-shadow: 0 22px 60px rgba(0,0,0,.28); }
html[data-theme="dark"] .fl-search__icon { border-color: #9da4b2; }
html[data-theme="dark"] .fl-search__icon::after { background: #9da4b2; }
html[data-theme="dark"] .fl-search input::placeholder { color: #7f8796; }
html[data-theme="dark"] .fl-search button { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-search button:hover { background: #7b6cf8; }
html[data-theme="dark"] .fl-popular { color: #9299a7; }
html[data-theme="dark"] .fl-popular button { border-color: #353a46; background: #1a1d25; color: #b6bbc6; }
html[data-theme="dark"] .fl-popular button:hover { border-color: #6d61ae; background: #252936; color: #c9c2ff; }
html[data-theme="dark"] .fl-hero-art::before { border-color: rgba(139,124,255,.17); background: linear-gradient(145deg,rgba(33,36,47,.8),rgba(31,27,55,.62)); box-shadow: inset 0 0 80px rgba(255,255,255,.025); }
html[data-theme="dark"] .fl-match-card,
html[data-theme="dark"] .fl-skill-pill { border-color: rgba(70,75,89,.92); background: rgba(27,30,39,.91); color: var(--fl-ink); box-shadow: 0 24px 65px rgba(0,0,0,.34); }
html[data-theme="dark"] .fl-match-card__top b,
html[data-theme="dark"] .fl-match-card__budget span,
html[data-theme="dark"] .fl-hero__foot span { color: #9299a7; }
html[data-theme="dark"] .fl-match-card__chips span { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-match-card--talent em { background: #17382e; color: #71ddb2; }
html[data-theme="dark"] .fl-match-card--response > span { color: #18200e; }
html[data-theme="dark"] .fl-skill-pill { color: #c1c5cf; }
html[data-theme="dark"] .fl-hero__foot { border-color: #2b303a; }

/* Home sections */
html[data-theme="dark"] .fl-categories,
html[data-theme="dark"] .fl-specialists,
html[data-theme="dark"] .fl-cta { background: #14161c; }
html[data-theme="dark"] .fl-category-card { background: #1a1d25; }
html[data-theme="dark"] .fl-category-card:hover { border-color: #554d7d; box-shadow: 0 22px 55px rgba(0,0,0,.25); }
html[data-theme="dark"] .fl-category-card__icon { background: #302d4c; color: #c5bdff; }
html[data-theme="dark"] .fl-category-card--1 .fl-category-card__icon,
html[data-theme="dark"] .fl-category-card--4 .fl-category-card__icon { background: #29351f; color: #c3ef77; }
html[data-theme="dark"] .fl-category-card--2 .fl-category-card__icon,
html[data-theme="dark"] .fl-category-card--5 .fl-category-card__icon { background: #422b23; color: #ffb48e; }
html[data-theme="dark"] .fl-category-card__arrow { background: #222630; }
html[data-theme="dark"] .fl-category-card:hover .fl-category-card__arrow { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-category-card__meta { color: #9299a7; }

html[data-theme="dark"] .fl-value { background: linear-gradient(180deg,#101217,#151323); }
html[data-theme="dark"] .fl-value__visual { border-color: rgba(139,124,255,.2); background: radial-gradient(circle at 50% 45%,rgba(39,42,54,.95),rgba(28,25,48,.68) 60%,rgba(139,124,255,.08)); box-shadow: inset 0 0 70px rgba(255,255,255,.018); }
html[data-theme="dark"] .fl-value__core,
html[data-theme="dark"] .fl-value__satellite { border-color: #414653; background: rgba(28,31,40,.9); color: #c5cad4; box-shadow: 0 22px 60px rgba(0,0,0,.3); }
html[data-theme="dark"] .fl-value-list article { background: rgba(26,29,37,.82); }
html[data-theme="dark"] .fl-value-list article:hover { border-color: #554d7d; background: #20232c; }
html[data-theme="dark"] .fl-value-list article > span { background: #302c4b; color: #c9c2ff; }

html[data-theme="dark"] .fl-how { background: #101217; }
html[data-theme="dark"] .fl-how__switch { background: #1a1d25; box-shadow: 0 12px 35px rgba(0,0,0,.2); }
html[data-theme="dark"] .fl-how__switch button[aria-selected="true"] { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-how__visual { background: rgba(25,28,36,.78); }
html[data-theme="dark"] .fl-how__idea,
html[data-theme="dark"] .fl-how__result,
html[data-theme="dark"] .fl-step { background: #191c24; box-shadow: 0 14px 45px rgba(0,0,0,.18); }
html[data-theme="dark"] .fl-how__idea span,
html[data-theme="dark"] .fl-step__number { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-how__result span,
html[data-theme="dark"] .fl-step:nth-child(2) .fl-step__number { background: #29351f; color: #c3ef77; }
html[data-theme="dark"] .fl-step:nth-child(3) .fl-step__number { background: #422b23; color: #ffb48e; }
html[data-theme="dark"] .fl-how__path i { border-color: #191c24; }

html[data-theme="dark"] .fl-projects { background: #0b0d12; }
html[data-theme="dark"] .fl-project-row > a:hover { color: #18200e; }
html[data-theme="dark"] .fl-cta__panel { background: #5f50dd; box-shadow: 0 35px 90px rgba(0,0,0,.32); }
html[data-theme="dark"] .fl-brief-card { border-color: rgba(103,108,126,.65); background: rgba(25,28,36,.96); color: var(--fl-ink); box-shadow: 0 30px 70px rgba(0,0,0,.34); }
html[data-theme="dark"] .fl-brief-card__roles { background: #111319; }
html[data-theme="dark"] .fl-brief-card__roles button.is-active { background: #2a2e38; color: #fff; }
html[data-theme="dark"] .fl-brief-card label > span,
html[data-theme="dark"] .fl-brief-card__feedback { color: #adb3bf; }
html[data-theme="dark"] .fl-brief-card textarea { background: #12151b; }
html[data-theme="dark"] .fl-brief-card__submit { background: #2c313d; color: #fff; }

html[data-theme="dark"] .fl-footer { background: #090b0f; }
html[data-theme="dark"] .fl-footer__up:hover span { color: #18200e; }

/* Authentication */
html[data-theme="dark"] .fl-auth { background: radial-gradient(circle at 8% 12%,rgba(185,243,74,.08),transparent 28%),radial-gradient(circle at 92% 18%,rgba(139,124,255,.15),transparent 32%),#101217; }
html[data-theme="dark"] .fl-auth__story li { color: #c1c6d0; }
html[data-theme="dark"] .fl-auth__story li span,
html[data-theme="dark"] .fl-auth-role-card i { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-auth__signal div { border-color: #3a3f4b; background: rgba(27,30,39,.83); box-shadow: 0 18px 45px rgba(0,0,0,.24); }
html[data-theme="dark"] .fl-auth__card { border-color: #3a3f4b; background: rgba(25,28,36,.95); box-shadow: 0 28px 90px rgba(0,0,0,.36); }
html[data-theme="dark"] .fl-auth-field > span:first-child,
html[data-theme="dark"] .fl-auth-roles legend { color: #d5d8df; }
html[data-theme="dark"] .fl-auth-field input,
html[data-theme="dark"] .fl-auth-role-card { border-color: #383e4a; background: #14171d; }
html[data-theme="dark"] .fl-auth-field--primary input { border-color: #5b5189; background: #191724; }
html[data-theme="dark"] .fl-auth-field input:focus { background: #191c24; }
html[data-theme="dark"] .fl-auth-password button:hover { background: #302c4b; }
html[data-theme="dark"] .fl-auth-role-options label:hover .fl-auth-role-card,
html[data-theme="dark"] .fl-auth-role-options input:checked + .fl-auth-role-card { background: #211e33; }
html[data-theme="dark"] .fl-auth-check { color: #bdc2cc; }
html[data-theme="dark"] .fl-password-meter i { background: #343945; }
html[data-theme="dark"] .fl-auth-submit { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-auth-submit--light { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-auth-alert.is-error { border-color: #703945; background: #351d24; color: #ff9eaa; }
html[data-theme="dark"] .fl-auth-alert.is-success { border-color: #27614d; background: #173429; color: #7ee0b9; }
html[data-theme="dark"] .fl-auth-role-card__check { border-color: #4a505d; }
html[data-theme="dark"] .fl-auth-state--success > span { background: #17382e; color: #71ddb2; }
html[data-theme="dark"] .fl-auth-state--error > span { background: #3a2028; color: #ff9eaa; }
html[data-theme="dark"] .fl-profile-status { border-color: #693743; background: #321d23; }
html[data-theme="dark"] .fl-profile-status.is-verified { border-color: #2b624f; background: #173329; }
html[data-theme="dark"] .fl-profile-grid div { background: #14171d; }
html[data-theme="dark"] .fl-profile-note { background: #292640; color: #c9c2ee; }

/* Project catalog, project creation, services */
html[data-theme="dark"] .fl-project-catalog,
html[data-theme="dark"] .fl-project-create,
html[data-theme="dark"] .fl-service-detail { background: #101217; color: var(--fl-ink); }
html[data-theme="dark"] .fl-project-catalog__toolbar,
html[data-theme="dark"] .fl-project-card,
html[data-theme="dark"] .fl-project-catalog__aside > div,
html[data-theme="dark"] .fl-project-catalog__aside section,
html[data-theme="dark"] .fl-project-catalog__empty,
html[data-theme="dark"] .fl-project-form > section,
html[data-theme="dark"] .fl-project-form > footer,
html[data-theme="dark"] .fl-project-create__aside > div,
html[data-theme="dark"] .fl-project-create__aside > section,
html[data-theme="dark"] .fl-project-create__aside > p,
html[data-theme="dark"] .fl-service-author,
html[data-theme="dark"] .fl-service-content,
html[data-theme="dark"] .fl-service-steps,
html[data-theme="dark"] .fl-service-more,
html[data-theme="dark"] .fl-service-detail--empty > div { background: #191c24; border-color: var(--fl-line); color: var(--fl-ink); box-shadow: 0 18px 50px rgba(0,0,0,.16); }
html[data-theme="dark"] .fl-project-catalog__toolbar > label,
html[data-theme="dark"] .fl-project-catalog__toolbar button,
html[data-theme="dark"] .fl-project-card__details,
html[data-theme="dark"] .fl-project-card__rail,
html[data-theme="dark"] .fl-project-catalog__aside p { color: #aeb4c0; }
html[data-theme="dark"] .fl-project-catalog__toolbar > label { background: #12151b; }
html[data-theme="dark"] .fl-project-catalog__toolbar input { color: var(--fl-ink); }
html[data-theme="dark"] .fl-project-catalog__toolbar input::placeholder { color: #818897; }
html[data-theme="dark"] .fl-project-card__rail { background: linear-gradient(180deg, #28233f, #1c1f29); }
html[data-theme="dark"] .fl-project-card__rail i { background: linear-gradient(#7569d6, transparent); }
html[data-theme="dark"] .fl-project-catalog__aside li span { color: #b9bec8; }
html[data-theme="dark"] .fl-project-catalog__toolbar button.is-active { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-project-card__content > header span,
html[data-theme="dark"] .fl-project-card__tags span,
html[data-theme="dark"] .fl-project-catalog__aside a { background: #242832; border-color: #373c48; color: #c2c7d1; }
html[data-theme="dark"] .fl-project-catalog__alert,
html[data-theme="dark"] .fl-project-create__alert { border-color: #604f31; background: #322817; color: #efca87; }
html[data-theme="dark"] .fl-project-catalog__aside li i,
html[data-theme="dark"] .fl-project-create__aside li i { background: #29351f; color: #c3ef77; }
html[data-theme="dark"] .fl-project-form input,
html[data-theme="dark"] .fl-project-form select,
html[data-theme="dark"] .fl-project-form textarea { border-color: #383e4a; background: #12151b; color: var(--fl-ink); }
html[data-theme="dark"] .fl-project-create__head > div:last-child,
html[data-theme="dark"] .fl-project-create__role { border-color: #3a3f4b; background: #191c24; }
html[data-theme="dark"] .fl-service-crumbs a,
html[data-theme="dark"] .fl-service-crumbs b { color: #aeb4c0; }
html[data-theme="dark"] .fl-service-detail__tags span { border-color: #373c48; background: #20242d; color: #bdc2cc; }
html[data-theme="dark"] .fl-service-author small,
html[data-theme="dark"] .fl-service-content__text,
html[data-theme="dark"] .fl-service-steps li p,
html[data-theme="dark"] .fl-service-more a span { color: #b2b8c3; }
html[data-theme="dark"] .fl-service-author > b { background: #3b301d; color: #f2c878; }
html[data-theme="dark"] .fl-service-more a { background: #15181f; }
html[data-theme="dark"] .fl-service-steps li i { background: #29351f; color: #bdeb74; }
html[data-theme="dark"] .fl-service-order { background: #0c0e13; }

/* Specialist cards */
html[data-theme="dark"] .fl-specialists__filter { background: #24213a; color: #c5bdff; }
html[data-theme="dark"] .fl-talent-card { background: #191c24; box-shadow: 0 16px 48px rgba(0,0,0,.2); }
html[data-theme="dark"] .fl-talent-card__cover { background: linear-gradient(135deg,#302d4c,#443d72); }
html[data-theme="dark"] .fl-talent-card--lime .fl-talent-card__cover { background: linear-gradient(135deg,#26341c,#405c22); }
html[data-theme="dark"] .fl-talent-card--orange .fl-talent-card__cover { background: linear-gradient(135deg,#3b2821,#6a3928); }
html[data-theme="dark"] .fl-talent-card--blue .fl-talent-card__cover { background: linear-gradient(135deg,#1d2d43,#294d78); }
html[data-theme="dark"] .fl-talent-avatar { border-color: #191c24; }
html[data-theme="dark"] .fl-talent-status { background: #17382e; color: #71ddb2; }
html[data-theme="dark"] .fl-talent-card__summary,
html[data-theme="dark"] .fl-talent-card__tags span,
html[data-theme="dark"] .fl-specialists__note { color: #b3b9c4; }
html[data-theme="dark"] .fl-talent-card__proof { color: #979eab; }
html[data-theme="dark"] .fl-talent-card__proof span:first-child { color: #e9bd6a; }
html[data-theme="dark"] .fl-talent-card__body > a span { background: #303541; color: #fff; }

/* Account */
html[data-theme="dark"] .fl-account { background: #101217; }
html[data-theme="dark"] .fl-account__backdrop { border-color: #2a2f39; background: linear-gradient(135deg,#1b192b 0%,#12151b 52%,#15211d 100%); }
html[data-theme="dark"] .fl-account__back,
html[data-theme="dark"] .fl-account-stats article > span,
html[data-theme="dark"] .fl-account-stats article > small { color: #a6acb8; }
html[data-theme="dark"] .fl-account-hero,
html[data-theme="dark"] .fl-account-stats article,
html[data-theme="dark"] .fl-account-panel,
html[data-theme="dark"] .fl-settings-card,
html[data-theme="dark"] .fl-account-nav,
html[data-theme="dark"] .fl-account-profile-card,
html[data-theme="dark"] .fl-account-help { border-color: var(--fl-line); background: #191c24; box-shadow: 0 18px 52px rgba(0,0,0,.17); }
html[data-theme="dark"] .fl-account-hero > a,
html[data-theme="dark"] .fl-contact-grid article > footer > a { border-color: #383e49; background: #20242d; color: var(--fl-ink); }
html[data-theme="dark"] .fl-account-filters { border-color: #343945; background: #12151b; }
html[data-theme="dark"] .fl-account-filters button { color: #a8afbb; }
html[data-theme="dark"] .fl-account-filters button[aria-pressed="true"] { background: #2a2e38; color: #fff; }
html[data-theme="dark"] .fl-project-history > article,
html[data-theme="dark"] .fl-contact-grid > article { border-color: #323742; background: #15181f; }
html[data-theme="dark"] .fl-project-history > article > footer,
html[data-theme="dark"] .fl-contact-privacy,
html[data-theme="dark"] .fl-settings-card--info li { border-color: #303540; }
html[data-theme="dark"] .fl-project-history__status > span,
html[data-theme="dark"] .fl-contact-card__top > span { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-project-history__status > span.is-completed { background: #17382e; color: #71ddb2; }
html[data-theme="dark"] .fl-project-history__status > span.is-cancelled { background: #3a2024; color: #ff9ca8; }
html[data-theme="dark"] .fl-account-person > img,
html[data-theme="dark"] .fl-account-person > i,
html[data-theme="dark"] .fl-contact-card__top > img,
html[data-theme="dark"] .fl-contact-card__top > i,
html[data-theme="dark"] .fl-account-profile-card > img,
html[data-theme="dark"] .fl-account-profile-card > i { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-account-empty { border-color: #454b58; background: #15181f; }
html[data-theme="dark"] .fl-account-empty > span,
html[data-theme="dark"] .fl-settings-card > header > span,
html[data-theme="dark"] .fl-settings-card--info li > i { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-account-empty a,
html[data-theme="dark"] .fl-settings-card form > button { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-settings-current,
html[data-theme="dark"] .fl-settings-card--role > div { border-color: #343945; background: #14171d; }
html[data-theme="dark"] .fl-email-progress { border-color: #4a4369; background: #211e33; }
html[data-theme="dark"] .fl-email-progress > div { background: #161920; }
html[data-theme="dark"] .fl-settings-card form > label > span { color: #c8ccd5; }
html[data-theme="dark"] .fl-settings-card input,
html[data-theme="dark"] .fl-contact-search { border-color: #383e4a; background: #12151b; color: var(--fl-ink); }
html[data-theme="dark"] .fl-settings-card input[aria-invalid="true"] { background: #28191d; }
html[data-theme="dark"] .fl-account-nav > a > i { background: #252a34; color: #b4bac5; }
html[data-theme="dark"] .fl-account-nav > a[aria-current="page"] { border-color: #514876; background: #292640; }
html[data-theme="dark"] .fl-account-nav > a[aria-current="page"] > i { background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-account-help { background: #15181f; }
html[data-theme="dark"] .fl-account-confirm,
html[data-theme="dark"] .fl-account-toast { border-color: #3b404c; background: rgba(25,28,36,.98); color: var(--fl-ink); }
html[data-theme="dark"] .fl-account-confirm button { border-color: #3b404c; background: #20242d; color: #d0d4dc; }
html[data-theme="dark"] .fl-account :is(.fl-settings-card > header small,.fl-settings-current span,.fl-settings-card--role > div > span,.fl-email-progress > div > span,.fl-email-progress > div > small,.fl-email-progress > p,.fl-settings-card--role > div > small,.fl-contact-grid article > small,.fl-contact-privacy,.fl-account-nav > span,.fl-account-nav > a small,.fl-account-profile-card > div > a,.fl-account-help > span) { color: #969daa; }
html[data-theme="dark"] .fl-account :is(.fl-email-progress > div > small,.fl-settings-card form > label > span,.fl-contact-grid article > footer > a) { color: #c1c6d0; }

/* Public profile, editors and feed */
html[data-theme="dark"] .fl-profile,
html[data-theme="dark"] .fl-public-profile { background: #101217; color: var(--fl-ink); }
html[data-theme="dark"] .fl-profile-cover { background: linear-gradient(135deg,#25223f,#433879 58%,#61519d); }
html[data-theme="dark"] .fl-profile-identity,
html[data-theme="dark"] .fl-profile-side-card,
html[data-theme="dark"] .fl-profile-bento article,
html[data-theme="dark"] .fl-portfolio-card,
html[data-theme="dark"] .fl-service-card,
html[data-theme="dark"] .fl-review-card,
html[data-theme="dark"] .fl-client-budget article,
html[data-theme="dark"] .fl-client-projects > article,
html[data-theme="dark"] .fl-completed-list,
html[data-theme="dark"] .fl-profile-metrics,
html[data-theme="dark"] .fl-profile-placeholder,
html[data-theme="dark"] .fl-profile-empty,
html[data-theme="dark"] .fl-profile-info-card,
html[data-theme="dark"] .fl-profile-compact-info,
html[data-theme="dark"] .fl-profile-completion,
html[data-theme="dark"] .fl-profile-account-nav { border-color: var(--fl-line); background: #191c24; color: var(--fl-ink); box-shadow: 0 16px 48px rgba(0,0,0,.16); }
html[data-theme="dark"] .fl-profile-side-card--accent { background: linear-gradient(145deg,#26223e,#1a1d25); }
html[data-theme="dark"] .fl-profile-metrics > article { border-color: var(--fl-line); background: #191c24; color: var(--fl-ink); box-shadow: 0 14px 36px rgba(0,0,0,.16); }
html[data-theme="dark"] .fl-profile-main > .fl-profile-metrics { scrollbar-color: #51486f #14171d; }
html[data-theme="dark"] .fl-profile-main > .fl-profile-metrics::-webkit-scrollbar { height: 6px; }
html[data-theme="dark"] .fl-profile-main > .fl-profile-metrics::-webkit-scrollbar-track { background: #14171d; }
html[data-theme="dark"] .fl-profile-main > .fl-profile-metrics::-webkit-scrollbar-thumb { border-radius: 999px; background: #51486f; }
html[data-theme="dark"] .fl-profile-identity__copy > p,
html[data-theme="dark"] .fl-profile-meta { color: #a8afbd; }
html[data-theme="dark"] .fl-service-card footer i { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-profile-compact-info > header,
html[data-theme="dark"] .fl-profile-compact-info__rows > article,
html[data-theme="dark"] .fl-profile-info-empty { border-color: #303540; }
html[data-theme="dark"] .fl-profile-compact-info__rows > article > i,
html[data-theme="dark"] .fl-profile-compact-info__logo,
html[data-theme="dark"] .fl-profile-info-card--company > span,
html[data-theme="dark"] .fl-profile-info-empty i,
html[data-theme="dark"] .fl-profile-fact > i,
html[data-theme="dark"] .fl-profile-metrics article > i { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-profile-compact-info__rows [data-profile-skills] em,
html[data-theme="dark"] .fl-profile-slug,
html[data-theme="dark"] .fl-profile-roleline > span { background: #242832; color: #bfc4ce; }
html[data-theme="dark"] .fl-profile-portrait { border-color: #191c24; background: #302c4b; }
html[data-theme="dark"] .fl-profile-portrait > .fl-profile-portrait__edit { border-color: #191c24; background: #6757f5; color: #fff; }
html[data-theme="dark"] .fl-profile-portrait > .fl-profile-portrait__remove { border-color: #191c24; background: #3a2024; color: #ff9ca8; }
html[data-theme="dark"] .fl-profile-online,
html[data-theme="dark"] .fl-profile-roleline > span.is-verified { background: #17382e; color: #71ddb2; }
html[data-theme="dark"] .fl-profile-section__head > button,
html[data-theme="dark"] .fl-profile-name-row > button,
html[data-theme="dark"] .fl-profile-cover__actions button,
html[data-theme="dark"] .fl-profile-compact-info > header button,
html[data-theme="dark"] .fl-profile-account-nav a:hover { border-color: #3b404c; background: #222630; color: #d2d6de; }
html[data-theme="dark"] .fl-profile-account-nav a > i { background: #2a2e38; }
html[data-theme="dark"] .fl-profile-form-grid input,
html[data-theme="dark"] .fl-profile-form-grid textarea,
html[data-theme="dark"] .fl-tag-editor input,
html[data-theme="dark"] .fl-profile-dialog__grid input,
html[data-theme="dark"] .fl-profile-dialog__grid textarea { border-color: #383e4a; background: #12151b; color: var(--fl-ink); }
html[data-theme="dark"] .fl-tag-editor > div,
html[data-theme="dark"] .fl-profile-id-field { border-color: #383e4a; background: #12151b; }
html[data-theme="dark"] .fl-tag-editor [data-profile-tag-list] button { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-company-logo-editor { border-color: #383e4a; background: #14171d; }
html[data-theme="dark"] .fl-company-logo-editor [data-profile-company-logo-preview] { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-company-logo-editor button { border-color: #3b404c; background: #222630; color: #c9c2ff; }
html[data-theme="dark"] .fl-profile-dialog,
html[data-theme="dark"] .fl-confirm-dialog,
html[data-theme="dark"] .fl-media-editor { background: #191c24; color: var(--fl-ink); }
html[data-theme="dark"] .fl-profile-dialog header,
html[data-theme="dark"] .fl-profile-dialog footer,
html[data-theme="dark"] .fl-media-editor header,
html[data-theme="dark"] .fl-media-editor footer { border-color: #303540; background: #191c24; }
html[data-theme="dark"] .fl-profile-dialog footer button,
html[data-theme="dark"] .fl-confirm-dialog button,
html[data-theme="dark"] .fl-media-editor__controls button,
html[data-theme="dark"] .fl-media-editor footer button { border-color: #3b404c; background: #222630; color: #d2d6de; }
html[data-theme="dark"] .fl-media-editor__stage { background: #0e1015; }
html[data-theme="dark"] .fl-profile-toast { border-color: #3b404c; background: rgba(25,28,36,.98); color: var(--fl-ink); }
html[data-theme="dark"] .fl-profile-dialog__email { background: #1c3026; }
html[data-theme="dark"] .fl-profile-dialog__email i { color: #88d4a6; }
html[data-theme="dark"] .fl-profile-dialog__media label { border-color: #383e4a; background: #15181f; }
html[data-theme="dark"] .fl-profile-completion__ring { background: conic-gradient(var(--fl-primary) var(--completion),#343746 0); }
html[data-theme="dark"] .fl-profile-completion__ring::after { background: #191c24; }
html[data-theme="dark"] .fl-profile-completion.is-complete { border-color: #345a2e; background: linear-gradient(155deg,#191c24,#1d2d1c); }
html[data-theme="dark"] .fl-metric-icon.is-reviews::after { background: #3b301d; }
html[data-theme="dark"] .fl-profile-info-card--about p,
html[data-theme="dark"] .fl-profile-compact-info__rows p,
html[data-theme="dark"] .fl-review-card > p { color: #c1c6d0; }
html[data-theme="dark"] .fl-profile-info-card--skills i,
html[data-theme="dark"] .fl-client-projects__top span { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-completed-list__mark { background: #29351f; color: #bdeb74; }
html[data-theme="dark"] .fl-review-card__author > i { background: #3b301d; color: #f2c878; }
html[data-theme="dark"] .fl-profile-alert { border-color: #3b404c; background: #20242d; color: #d2d6de; }
html[data-theme="dark"] .fl-profile-alert.is-error { border-color: #693743; background: #321d23; color: #ff9ca8; }

html[data-theme="dark"] .fl-feed-composer,
html[data-theme="dark"] .fl-feed-list,
html[data-theme="dark"] .fl-feed-empty { border-color: #303540; background: rgba(25,28,36,.96); box-shadow: 0 16px 42px rgba(0,0,0,.16); }
html[data-theme="dark"] .fl-feed-post { border-color: #303540; }
html[data-theme="dark"] .fl-feed-post__text { color: #d5d9e1; }
html[data-theme="dark"] .fl-feed-post__text a { color: #b8afff; border-color: #5b537c; }
html[data-theme="dark"] .fl-feed-post__head > div > p,
html[data-theme="dark"] .fl-feed-comment__body > header time { color: #969daa; }
html[data-theme="dark"] .fl-feed-comment__body > header a { color: #e1e4ea; }
html[data-theme="dark"] .fl-feed-post__role { border-color: #494361; background: #292640; color: #c9c2ff; }
html[data-theme="dark"] .fl-feed-post__actions > button:hover,
html[data-theme="dark"] .fl-feed-post__actions > button[aria-expanded="true"] { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-feed-comments { border-color: #303540; background: #14171d; }
html[data-theme="dark"] .fl-feed-comments > form { border-color: #383e4a; background: #1c2028; }
html[data-theme="dark"] .fl-feed-composer__body > footer,
html[data-theme="dark"] .fl-feed-comment-tools,
html[data-theme="dark"] .fl-feed-comment { border-color: #303540; }
html[data-theme="dark"] .fl-feed-avatar,
html[data-theme="dark"] .fl-feed-author { border-color: #46405f; background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-feed-emoji__panel,
html[data-theme="dark"] .fl-feed-reaction-picker { border-color: #3b404c; background: #20242d; box-shadow: 0 22px 55px rgba(0,0,0,.38); }
html[data-theme="dark"] .fl-feed-emoji__panel button:hover,
html[data-theme="dark"] .fl-feed-emoji-corner:hover,
html[data-theme="dark"] .fl-feed-reaction-picker button:hover,
html[data-theme="dark"] .fl-feed-reaction-picker button[aria-pressed="true"] { background: #302c4b; color: #fff; }
html[data-theme="dark"] .fl-feed-reaction-summary > button { border-color: #3b404c; background: #20242d; color: #b6bcc7; }
html[data-theme="dark"] .fl-feed-reaction-summary > button:hover,
html[data-theme="dark"] .fl-feed-reaction-summary > button[aria-pressed="true"] { border-color: #5a5181; background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-feed-reaction-picker button { color: #c1c6d0; }
html[data-theme="dark"] .fl-feed-draft-og,
html[data-theme="dark"] .fl-feed-og { border-color: #383e4a; background: #15181f; color: var(--fl-ink); }
html[data-theme="dark"] .fl-feed-og__image,
html[data-theme="dark"] .fl-feed-draft-media figure,
html[data-theme="dark"] .fl-feed-media,
html[data-theme="dark"] .fl-feed-media button { background: #242832; }
html[data-theme="dark"] .fl-feed-draft-og strong,
html[data-theme="dark"] .fl-feed-og strong { color: #e1e4ea; }
html[data-theme="dark"] .fl-feed-draft-og em,
html[data-theme="dark"] .fl-feed-og em { color: #a7aeba; }
html[data-theme="dark"] .fl-feed-edit-field textarea { border-color: #383e4a; background: #12151b; color: var(--fl-ink); }
html[data-theme="dark"] .fl-feed-edit-mark { background: #302c4b; color: #c9c2ff; }
html[data-theme="dark"] .fl-feed-comments-more,
html[data-theme="dark"] .fl-feed-more,
html[data-theme="dark"] .fl-feed-login { border-color: #3b404c; background: #1b1f27; color: #b8afff; }
html[data-theme="dark"] .fl-feed-comments-more:hover,
html[data-theme="dark"] .fl-feed-more:hover { border-color: #5a5181; background: #302c4b; }

@media (prefers-reduced-motion: no-preference) {
    html[data-theme="dark"] body.fl-site,
    html[data-theme="dark"] .fl-header__inner { transition: background-color .25s ease, color .25s ease, border-color .25s ease; }
}

/* profile.css */
.fl-public-profile {
    position: relative;
    isolation: isolate;
    padding: 34px 0 112px;
    overflow: clip;
    color: var(--fl-ink);
}

.fl-public-profile *, .fl-profile-dialog * { box-sizing: border-box; }
.fl-profile-dialog-open { overflow: hidden; }

.fl-profile-ambient { position: absolute; z-index: -1; inset: 0; overflow: hidden; pointer-events: none; }
.fl-profile-ambient i { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(8px); opacity: .44; }
.fl-profile-ambient i:nth-child(1) { top: 120px; left: -330px; background: radial-gradient(circle, rgba(185,243,74,.31), transparent 68%); }
.fl-profile-ambient i:nth-child(2) { top: -180px; right: -210px; background: radial-gradient(circle, rgba(103,87,245,.2), transparent 67%); }
.fl-profile-ambient i:nth-child(3) { top: 920px; right: -360px; background: radial-gradient(circle, rgba(255,157,94,.15), transparent 68%); }

.fl-profile-alert { display: flex; width: min(720px, 100%); margin: 0 auto 20px; padding: 15px 18px; align-items: center; gap: 12px; border: 1px solid #dceee5; border-radius: 16px; background: #f1fbf6; color: #156044; font-size: 14px; }
.fl-profile-alert.is-error { border-color: #f3d9d9; background: #fff5f5; color: #9c3434; }
.fl-profile-alert > span { display: grid; width: 27px; height: 27px; flex: 0 0 auto; place-items: center; border-radius: 9px; background: #d8f5e5; font-weight: 620; }
.fl-profile-alert.is-error > span { background: #fde1e1; }
.fl-profile-alert p { margin: 0; }

.fl-profile-hero { position: relative; }
.fl-profile-cover { position: relative; height: clamp(250px, 29vw, 348px); overflow: hidden; border: 1px solid rgba(255,255,255,.72); border-radius: 32px; background: linear-gradient(125deg, #1a1832 0%, #5143de 47%, #806fff 73%, #b9f34a 160%); box-shadow: 0 32px 80px rgba(50,43,116,.17); }
.fl-profile-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13,14,25,.4)); pointer-events: none; }
.fl-profile-cover > img { width: 100%; height: 100%; object-fit: cover; }
.fl-profile-cover__mesh { position: absolute; inset: 0; overflow: hidden; }
.fl-profile-cover__mesh::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.fl-profile-cover__mesh i { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); }
.fl-profile-cover__mesh i:nth-child(1) { width: 390px; height: 390px; right: 7%; top: -185px; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.02); }
.fl-profile-cover__mesh i:nth-child(2) { width: 78px; height: 78px; right: 15%; bottom: 52px; background: rgba(185,243,74,.78); border: 0; filter: blur(.2px); box-shadow: 0 18px 48px rgba(185,243,74,.28); animation: fl-profile-float 6s ease-in-out infinite; }
.fl-profile-cover__mesh i:nth-child(3) { width: 16px; height: 16px; right: 29%; bottom: 80px; background: #fff; border: 0; box-shadow: 0 0 30px #fff; }
.fl-profile-cover.has-image .fl-profile-cover__mesh { background: linear-gradient(110deg, rgba(18,15,48,.5), rgba(103,87,245,.05)); }
.fl-profile-cover__label { position: absolute; z-index: 2; left: 30px; top: 28px; display: inline-flex; min-height: 34px; padding: 0 13px; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(19,18,42,.3); color: #fff; font-size: 12px; font-weight: 540; letter-spacing: .045em; backdrop-filter: blur(12px); }
.fl-profile-cover__label i { width: 7px; height: 7px; border-radius: 50%; background: var(--fl-accent); box-shadow: 0 0 0 4px rgba(185,243,74,.15); }
.fl-profile-cover__edit { position: absolute; z-index: 3; right: 24px; top: 22px; display: inline-flex; min-height: 42px; padding: 0 15px; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.27); border-radius: 13px; background: rgba(17,19,26,.46); color: #fff; font: 540 13px/1 "Manrope", sans-serif; cursor: pointer; backdrop-filter: blur(13px); transition: transform .2s ease, background .2s ease; }
.fl-profile-cover__edit:hover { transform: translateY(-2px); background: rgba(17,19,26,.68); }

.fl-profile-identity { position: relative; z-index: 4; display: grid; width: calc(100% - 48px); min-height: 174px; margin: -68px auto 0; padding: 26px 28px 25px 190px; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 26px; border: 1px solid rgba(255,255,255,.86); border-radius: 26px; background: rgba(255,255,255,.9); box-shadow: 0 26px 70px rgba(34,31,76,.13); backdrop-filter: blur(24px) saturate(150%); }
.fl-profile-portrait { position: absolute; left: 27px; top: -33px; display: grid; width: 136px; height: 136px; place-items: center; border: 7px solid #fff; border-radius: 36px; background: linear-gradient(145deg, #6757f5, #9c6dff); color: #fff; box-shadow: 0 17px 42px rgba(70,59,157,.25); font-size: 38px; font-weight: 580; letter-spacing: -.05em; transform: rotate(-2deg); }
.fl-profile-portrait > img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
.fl-profile-portrait > span { transform: rotate(2deg); }
.fl-profile-portrait > button { position: absolute; right: -8px; bottom: -8px; display: grid; width: 38px; height: 38px; padding: 0; place-items: center; border: 4px solid #fff; border-radius: 50%; background: var(--fl-ink); color: #fff; font: 520 18px/1 "Manrope", sans-serif; cursor: pointer; transform: rotate(2deg); }
.fl-profile-online { position: absolute; right: 5px; top: 6px; width: 15px; height: 15px; border: 3px solid #fff; border-radius: 50%; background: #36c98b; }
.fl-profile-roleline { display: flex; margin-bottom: 8px; align-items: center; gap: 8px; flex-wrap: wrap; }
.fl-profile-roleline > span { display: inline-flex; min-height: 27px; padding: 0 10px; align-items: center; gap: 5px; border-radius: 999px; background: #eeecff; color: var(--fl-primary-deep); font-size: 12px; font-weight: 560; }
.fl-profile-roleline > span.is-verified { background: #edfae0; color: #3b681d; }
.fl-profile-roleline > span i { display: grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; background: #4a8424; color: #fff; font-style: normal; font-size: 10px; }
.fl-profile-identity h1 { margin: 0; font-size: clamp(30px, 3.4vw, 44px); font-weight: 620; line-height: 1.05; letter-spacing: -.045em; }
.fl-profile-identity__copy > p { margin: 8px 0 0; color: #505666; font-size: 16px; line-height: 1.5; }
.fl-profile-meta { display: flex; margin-top: 13px; gap: 17px; flex-wrap: wrap; color: #747a89; font-size: 12px; }
.fl-profile-meta span { display: inline-flex; align-items: center; gap: 6px; }
.fl-profile-meta i { color: var(--fl-primary); font-style: normal; }
.fl-profile-identity__actions { display: flex; min-width: 204px; align-items: center; flex-direction: column; gap: 10px; }
.fl-profile-identity__actions .fl-button { width: 100%; min-height: 48px; padding-inline: 17px; font-size: 13px; }
.fl-profile-public-link { color: #6f7481; font-size: 12px; text-decoration: underline; text-decoration-color: #cdd0da; text-underline-offset: 4px; }

.fl-profile-metrics { display: grid; margin: 22px 24px 0; grid-template-columns: 1fr .7fr 1fr 1.35fr; border: 1px solid var(--fl-line); border-radius: 22px; background: rgba(255,255,255,.77); box-shadow: 0 16px 45px rgba(34,31,76,.055); backdrop-filter: blur(12px); }
.fl-profile-metrics > div { position: relative; display: flex; min-height: 104px; padding: 19px 23px; justify-content: center; flex-direction: column; border-right: 1px solid var(--fl-line); }
.fl-profile-metrics > div:last-child { border-right: 0; }
.fl-profile-metrics strong { overflow: hidden; font-size: 23px; font-weight: 610; letter-spacing: -.035em; text-overflow: ellipsis; white-space: nowrap; }
.fl-profile-metrics span { margin-top: 3px; color: var(--fl-muted); font-size: 11px; }
.fl-profile-stars { position: absolute; right: 18px; top: 23px; color: #f6ad2e; font-style: normal; font-size: 10px; letter-spacing: 1px; }

.fl-profile-layout { display: grid; margin-top: 65px; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 30px; }
.fl-profile-main { min-width: 0; }
.fl-profile-section { margin-bottom: 82px; scroll-margin-top: 110px; }
.fl-profile-section__head { display: flex; margin-bottom: 25px; align-items: end; justify-content: space-between; gap: 22px; }
.fl-profile-section__head .fl-kicker { margin-bottom: 10px; font-size: 11px; }
.fl-profile-section__head h2 { max-width: 720px; margin: 0; font-size: clamp(29px, 3.5vw, 43px); font-weight: 600; line-height: 1.08; letter-spacing: -.045em; }
.fl-profile-section__head > button { padding: 8px 0; border: 0; background: transparent; color: var(--fl-primary-deep); font: 560 13px/1 "Manrope", sans-serif; cursor: pointer; }
.fl-profile-section__head > span { color: #878c99; font-size: 12px; }

.fl-profile-bento { display: grid; grid-template-columns: 1.45fr .9fr; gap: 14px; }
.fl-profile-bento article { position: relative; overflow: hidden; border: 1px solid var(--fl-line); border-radius: 22px; background: #fff; }
.fl-profile-about { min-height: 232px; padding: 35px 36px; grid-row: span 2; }
.fl-profile-about::after { content: ""; position: absolute; width: 180px; height: 180px; right: -75px; bottom: -92px; border-radius: 50%; background: radial-gradient(circle, rgba(103,87,245,.17), transparent 68%); }
.fl-profile-about > span { position: absolute; right: 25px; top: 9px; color: #eeecff; font-family: Georgia, serif; font-size: 92px; line-height: 1; }
.fl-profile-about p { position: relative; z-index: 1; margin: 0; color: #424856; font-size: 16px; line-height: 1.82; }
.fl-profile-facts { min-height: 140px; padding: 25px; }
.fl-profile-facts > span, .fl-profile-fact > span { display: block; margin-bottom: 15px; color: #777d8b; font-size: 11px; font-weight: 560; letter-spacing: .06em; text-transform: uppercase; }
.fl-profile-facts > div { display: flex; gap: 7px; flex-wrap: wrap; }
.fl-profile-facts i { padding: 7px 9px; border-radius: 9px; background: #f2f1ff; color: #5143de; font-style: normal; font-size: 11px; }
.fl-profile-facts p { margin: 0; color: var(--fl-muted); font-size: 13px; }
.fl-profile-fact { min-height: 128px; padding: 23px 25px; }
.fl-profile-fact > i { position: absolute; right: 20px; top: 19px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 11px; background: #edf8db; color: #42631f; font-style: normal; font-size: 15px; }
.fl-profile-fact strong { display: block; padding-right: 35px; font-size: 16px; font-weight: 580; line-height: 1.35; }

.fl-reviews-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 15px; }
.fl-rating-orbit { position: relative; display: flex; min-height: 290px; padding: 27px; align-items: center; justify-content: center; flex-direction: column; overflow: hidden; border-radius: 24px; background: #171829; color: #fff; text-align: center; }
.fl-rating-orbit::before { content: ""; width: 124px; height: 124px; border-radius: 50%; background: conic-gradient(var(--fl-accent) calc(var(--rating) / 5 * 1turn), rgba(255,255,255,.1) 0); mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 0); }
.fl-rating-orbit::after { content: ""; position: absolute; width: 170px; height: 170px; left: -85px; bottom: -94px; border-radius: 50%; background: rgba(103,87,245,.34); filter: blur(8px); }
.fl-rating-orbit > div { position: absolute; top: 58px; }
.fl-rating-orbit strong { display: block; font-size: 39px; font-weight: 580; line-height: 1; }
.fl-rating-orbit span { color: #aeb1c0; font-size: 11px; }
.fl-rating-orbit p { margin: 24px 0 0; color: #bfc2ce; font-size: 12px; line-height: 1.6; }
.fl-review-list { display: grid; gap: 11px; }
.fl-review-card { padding: 20px 22px; border: 1px solid var(--fl-line); border-radius: 20px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.fl-review-card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(39,34,91,.08); }
.fl-review-card__author { display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: center; gap: 10px; }
.fl-review-card__author > img, .fl-review-card__author > span { display: grid; width: 38px; height: 38px; place-items: center; object-fit: cover; border-radius: 12px; background: #eeecff; color: #5143de; font-size: 11px; font-weight: 600; }
.fl-review-card__author > .fl-presence-avatar { position:relative; overflow:visible; }
.fl-review-card__author > .fl-presence-avatar > img,
.fl-review-card__author > .fl-presence-avatar > i { display:grid; width:38px; height:38px; place-items:center; object-fit:cover; overflow:hidden; border-radius:12px; background:#eeecff; color:#5143de; font-style:normal; font-size:11px; font-weight:600; }
.fl-review-card__author strong { display: block; font-size: 13px; font-weight: 600; }
.fl-review-card__author small { display: block; margin-top: 2px; overflow: hidden; color: #8b909e; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.fl-review-card__author > i { padding: 6px 8px; border-radius: 8px; background: #fff6dd; color: #9b6812; font-style: normal; font-size: 11px; font-weight: 600; }
.fl-review-card > p { margin: 15px 0 10px; color: #4f5564; font-size: 13px; line-height: 1.65; }
.fl-review-card time { color: #9a9eaa; font-size: 10px; }

.fl-portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.fl-portfolio-card { overflow: hidden; border: 1px solid var(--fl-line); border-radius: 23px; background: #fff; transition: transform .28s ease, box-shadow .28s ease; }
.fl-portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(38,34,82,.11); }
.fl-portfolio-card__visual { position: relative; height: 210px; overflow: hidden; background: linear-gradient(140deg, #5143de, #a77af9); }
.fl-portfolio-card--2 .fl-portfolio-card__visual { background: linear-gradient(140deg, #113d52, #4ec8b7); }
.fl-portfolio-card--3 .fl-portfolio-card__visual { background: linear-gradient(140deg, #792f52, #ff9a77); }
.fl-portfolio-card--4 .fl-portfolio-card__visual { background: linear-gradient(140deg, #30323c, #87909e); }
.fl-portfolio-card__visual::before, .fl-portfolio-card__visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.fl-portfolio-card__visual::before { width: 230px; height: 230px; right: -75px; top: -95px; box-shadow: 0 0 0 38px rgba(255,255,255,.035); }
.fl-portfolio-card__visual::after { width: 54px; height: 54px; left: 28px; bottom: 25px; background: rgba(185,243,74,.8); border: 0; }
.fl-portfolio-card__visual img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fl-portfolio-card:hover img { transform: scale(1.035); }
.fl-portfolio-card__visual > span { position: absolute; z-index: 3; right: 17px; bottom: 13px; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .12em; }
.fl-portfolio-card__copy { padding: 22px 23px 23px; }
.fl-portfolio-card__copy small, .fl-service-card small { color: var(--fl-primary-deep); font-size: 10px; font-weight: 570; letter-spacing: .07em; text-transform: uppercase; }
.fl-portfolio-card h3, .fl-service-card h3 { margin: 8px 0 8px; font-size: 19px; font-weight: 590; line-height: 1.25; letter-spacing: -.025em; }
.fl-portfolio-card p, .fl-service-card p { margin: 0; color: var(--fl-muted); font-size: 12px; line-height: 1.65; }
.fl-portfolio-card a { display: inline-flex; margin-top: 16px; color: var(--fl-ink); font-size: 12px; font-weight: 580; text-decoration: none; }
.fl-portfolio-card a span { margin-left: 8px; color: var(--fl-primary); }

.fl-completed-list { display: grid; overflow: hidden; border: 1px solid var(--fl-line); border-radius: 23px; background: #fff; }
.fl-completed-list > article { display: grid; min-height: 116px; padding: 22px 24px; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 15px; border-bottom: 1px solid var(--fl-line); }
.fl-completed-list > article:last-child { border-bottom: 0; }
.fl-completed-list__mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 13px; background: #edfadf; color: #3b741a; font-weight: 600; }
.fl-completed-list small { color: #8b909d; font-size: 10px; }
.fl-completed-list h3 { margin: 5px 0 3px; font-size: 16px; font-weight: 580; }
.fl-completed-list h3 a, .fl-client-projects h3 a { color: inherit; text-decoration: none; transition: color .2s ease; }
.fl-completed-list h3 a:hover, .fl-client-projects h3 a:hover { color: var(--fl-primary); }
.fl-completed-list p { margin: 0; color: var(--fl-muted); font-size: 11px; }
.fl-completed-list article > div:last-child { text-align: right; }
.fl-completed-list article > div:last-child strong { display: block; font-size: 14px; font-weight: 600; }
.fl-completed-list article > div:last-child span { display: inline-block; margin-top: 6px; padding: 5px 7px; border-radius: 7px; background: #fff5d8; color: #8c5e10; font-size: 10px; }

.fl-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.fl-service-card { position: relative; display: flex; min-height: 230px; padding: 25px; justify-content: space-between; flex-direction: column; overflow: hidden; border: 1px solid var(--fl-line); border-radius: 23px; background: #fff; color: var(--fl-ink); text-decoration: none; transition: transform .27s ease, border-color .27s ease, box-shadow .27s ease; }
.fl-service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -87px; top: -86px; border-radius: 50%; background: rgba(103,87,245,.09); transition: transform .35s ease; }
.fl-service-card:hover { transform: translateY(-5px); border-color: #d7d2ff; box-shadow: 0 23px 58px rgba(50,44,105,.1); }
.fl-service-card:hover::after { transform: scale(1.35); }
.fl-service-card__index { position: absolute; right: 19px; top: 16px; color: #b7bac4; font-size: 10px; letter-spacing: .12em; }
.fl-service-card h3 { padding-right: 28px; }
.fl-service-card footer { display: grid; margin-top: 25px; padding-top: 17px; grid-template-columns: 1fr auto 29px; align-items: center; gap: 12px; border-top: 1px solid var(--fl-line); color: #737886; font-size: 10px; }
.fl-service-card footer strong { display: block; margin-top: 2px; color: var(--fl-ink); font-size: 14px; font-weight: 600; }
.fl-service-card footer .fl-service-card__unit { padding: 7px 9px; border-radius: 8px; background: #f1efff; color: var(--fl-primary-deep); font-size: 10px; font-weight: 620; }
.fl-service-card footer i { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; background: var(--fl-ink); color: #fff; font-style: normal; }

.fl-client-budget { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.fl-client-budget article { position: relative; min-height: 180px; padding: 27px; overflow: hidden; border: 1px solid var(--fl-line); border-radius: 23px; background: #fff; }
.fl-client-budget article:first-child { background: linear-gradient(135deg, #5c4ce6, #8874ff); color: #fff; border-color: transparent; }
.fl-client-budget small { color: #818694; font-size: 11px; }
.fl-client-budget article:first-child small, .fl-client-budget article:first-child p { color: rgba(255,255,255,.7); }
.fl-client-budget strong { display: block; margin-top: 22px; font-size: clamp(26px, 3vw, 38px); font-weight: 580; letter-spacing: -.045em; }
.fl-client-budget p { margin: 8px 0 0; color: var(--fl-muted); font-size: 11px; line-height: 1.5; }
.fl-client-budget article:first-child > i { position: absolute; right: -36px; bottom: -58px; width: 145px; height: 145px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.04); }
.fl-client-projects { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.fl-client-projects > article { padding: 24px; border: 1px solid var(--fl-line); border-radius: 23px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.fl-client-projects > article:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(41,36,93,.08); }
.fl-client-projects__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fl-client-projects__top span { padding: 6px 8px; border-radius: 8px; background: #f0efff; color: #5143de; font-size: 10px; }
.fl-client-projects__top time { color: #979ba7; font-size: 10px; }
.fl-client-projects h3 { margin: 17px 0 8px; font-size: 18px; font-weight: 590; line-height: 1.3; }
.fl-client-projects > article > p { min-height: 58px; margin: 0; color: var(--fl-muted); font-size: 12px; line-height: 1.6; }
.fl-client-projects footer { display: flex; margin-top: 20px; padding-top: 17px; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--fl-line); }
.fl-client-projects footer > a { display: flex; min-width: 0; align-items: center; gap: 9px; color: var(--fl-ink); text-decoration: none; }
.fl-client-projects footer img, .fl-client-projects footer a > i { display: grid; width: 36px; height: 36px; place-items: center; object-fit: cover; border-radius: 11px; background: #eeecff; color: #5143de; font-style: normal; font-size: 10px; }
.fl-client-projects footer a > .fl-presence-avatar { width:36px; height:36px; overflow:visible; color:inherit; font-size:inherit; line-height:normal; }
.fl-client-projects footer a > .fl-presence-avatar > img,
.fl-client-projects footer a > .fl-presence-avatar > i { display:grid; width:36px; height:36px; place-items:center; object-fit:cover; overflow:hidden; border-radius:11px; background:#eeecff; color:#5143de; font-style:normal; font-size:10px; }
.fl-client-projects footer a span { color: #8e929f; font-size: 9px; line-height: 1.45; }
.fl-client-projects footer a strong { color: var(--fl-ink); font-size: 11px; font-weight: 580; }
.fl-client-projects footer > div { text-align: right; }
.fl-client-projects footer > div strong { display: block; font-size: 13px; font-weight: 600; }
.fl-client-projects footer > div span { color: #9b6812; font-size: 10px; }

.fl-profile-placeholder { display: flex; min-height: 180px; padding: 30px; align-items: center; justify-content: center; flex-direction: column; border: 1px dashed #d7d9e3; border-radius: 22px; background: rgba(255,255,255,.55); text-align: center; }
.fl-profile-placeholder--wide { grid-column: 1 / -1; }
.fl-profile-placeholder > span { display: grid; width: 45px; height: 45px; margin-bottom: 14px; place-items: center; border-radius: 15px; background: #eeecff; color: var(--fl-primary); font-size: 18px; }
.fl-profile-placeholder strong { font-size: 15px; font-weight: 590; }
.fl-profile-placeholder p { max-width: 390px; margin: 7px 0 0; color: var(--fl-muted); font-size: 12px; line-height: 1.6; }

.fl-profile-sidebar { position: sticky; top: 102px; display: grid; gap: 13px; }
.fl-profile-side-card { padding: 23px; border: 1px solid var(--fl-line); border-radius: 22px; background: rgba(255,255,255,.84); box-shadow: 0 15px 42px rgba(38,34,82,.055); backdrop-filter: blur(14px); }
.fl-profile-side-card--accent { position: relative; overflow: hidden; background: #191a2b; color: #fff; }
.fl-profile-side-card--accent::after { content: ""; position: absolute; width: 140px; height: 140px; right: -60px; top: -65px; border-radius: 50%; background: rgba(103,87,245,.42); box-shadow: 0 0 0 30px rgba(103,87,245,.08); }
.fl-profile-side-card > span { color: #8c919f; font-size: 10px; font-weight: 570; letter-spacing: .08em; text-transform: uppercase; }
.fl-profile-side-card--accent > span { color: var(--fl-accent); }
.fl-profile-side-card h3 { position: relative; z-index: 1; margin: 14px 0 10px; font-size: 19px; font-weight: 580; line-height: 1.35; letter-spacing: -.025em; }
.fl-profile-side-card p { margin: 0; color: #afb2bf; font-size: 11px; line-height: 1.65; }
.fl-profile-side-card--accent a { position: relative; z-index: 1; display: flex; min-height: 45px; margin-top: 20px; padding: 0 14px; align-items: center; justify-content: space-between; border-radius: 13px; background: var(--fl-accent); color: #1c2810; font-size: 12px; font-weight: 600; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.fl-profile-side-card--accent a:hover { transform: translateY(-2px); background: #c8fb62; }
.fl-profile-side-card:not(.fl-profile-side-card--accent) strong { display: block; margin-top: 13px; overflow: hidden; font-size: 12px; font-weight: 590; text-overflow: ellipsis; white-space: nowrap; }
.fl-profile-side-card:not(.fl-profile-side-card--accent) small { display: block; margin-top: 3px; overflow: hidden; color: #898e9b; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.fl-profile-side-card button, .fl-profile-logout button { display: flex; width: 100%; margin-top: 17px; padding: 13px 0 0; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid var(--fl-line); background: transparent; color: var(--fl-primary-deep); font: 560 11px/1.2 "Manrope", sans-serif; cursor: pointer; }
.fl-profile-logout { padding: 0 14px; }
.fl-profile-logout button { margin: 0; padding: 13px 0; color: #7d8290; }

.fl-profile-dialog { width: min(820px, calc(100% - 30px)); max-height: calc(100vh - 34px); padding: 0; overflow: hidden; border: 0; border-radius: 28px; background: #fff; color: var(--fl-ink); box-shadow: 0 40px 130px rgba(17,16,39,.3); }
.fl-profile-dialog::backdrop { background: rgba(16,17,28,.6); backdrop-filter: blur(8px); }
.fl-profile-dialog > form { max-height: calc(100vh - 34px); overflow: auto; }
.fl-profile-dialog header { position: sticky; z-index: 5; top: 0; display: flex; padding: 27px 30px 21px; align-items: start; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--fl-line); background: rgba(255,255,255,.95); backdrop-filter: blur(16px); }
.fl-profile-dialog header span { color: var(--fl-primary-deep); font-size: 10px; font-weight: 580; letter-spacing: .1em; text-transform: uppercase; }
.fl-profile-dialog header h2 { margin: 7px 0 5px; font-size: 27px; font-weight: 600; letter-spacing: -.035em; }
.fl-profile-dialog header p { margin: 0; color: var(--fl-muted); font-size: 11px; }
.fl-profile-dialog header > button { width: 40px; height: 40px; padding: 0; border: 0; border-radius: 12px; background: #f0f1f5; color: #424653; font: 400 25px/1 "Manrope", sans-serif; cursor: pointer; }
.fl-profile-dialog__media { display: grid; padding: 25px 30px 8px; grid-template-columns: 170px minmax(0,1fr); gap: 13px; }
.fl-profile-dialog__media label { display: grid; padding: 14px; gap: 9px; border: 1px solid var(--fl-line); border-radius: 17px; cursor: pointer; }
.fl-profile-dialog__media label > span { color: #6f7481; font-size: 10px; }
.fl-profile-dialog__media label > i { display: grid; height: 96px; place-items: center; overflow: hidden; border-radius: 12px; background: linear-gradient(135deg, #6757f5, #ac78ff); color: #fff; font-style: normal; font-size: 24px; }
.fl-profile-dialog__media label:first-child > i { width: 96px; border-radius: 26px; }
.fl-profile-dialog__media label > i img { width: 100%; height: 100%; object-fit: cover; }
.fl-profile-dialog__media label > strong { color: var(--fl-primary-deep); font-size: 10px; font-weight: 570; }
.fl-profile-dialog__media input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.fl-profile-dialog__remove { display: flex; padding: 2px 30px 12px; gap: 18px; color: #7a7f8d; font-size: 10px; }
.fl-profile-dialog__remove label { display: flex; align-items: center; gap: 6px; }
.fl-profile-dialog__grid { display: grid; padding: 17px 30px 28px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.fl-profile-dialog__grid label { display: grid; gap: 7px; }
.fl-profile-dialog__grid label.is-wide { grid-column: 1 / -1; }
.fl-profile-dialog__grid label > span, .fl-profile-dialog__email > span { color: #636977; font-size: 11px; font-weight: 540; }
.fl-profile-dialog__grid input, .fl-profile-dialog__grid textarea { width: 100%; min-height: 47px; padding: 0 13px; border: 1px solid #dfe1e9; border-radius: 12px; outline: 0; background: #fff; color: var(--fl-ink); font: 400 13px/1.5 "Manrope", sans-serif; transition: border-color .2s ease, box-shadow .2s ease; }
.fl-profile-dialog__grid textarea { min-height: 120px; padding-block: 12px; resize: vertical; }
.fl-profile-dialog__grid input:focus, .fl-profile-dialog__grid textarea:focus { border-color: #9f96fb; box-shadow: 0 0 0 3px rgba(103,87,245,.1); }
.fl-profile-slug { display: flex; align-items: stretch; overflow: hidden; border: 1px solid #dfe1e9; border-radius: 12px; }
.fl-profile-slug i { display: flex; padding: 0 12px; align-items: center; background: #f5f5f8; color: #8a8f9c; font-style: normal; font-size: 10px; white-space: nowrap; }
.fl-profile-slug input { border: 0; border-radius: 0; }
.fl-profile-dialog__email { display: grid; margin: 0 30px 28px; padding: 15px 17px; grid-template-columns: 1fr auto; gap: 4px 15px; border-radius: 14px; background: #f4f9ec; }
.fl-profile-dialog__email strong { font-size: 12px; font-weight: 570; }
.fl-profile-dialog__email i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #4c742c; font-style: normal; font-size: 10px; }
.fl-profile-dialog footer { position: sticky; z-index: 5; bottom: 0; display: flex; padding: 16px 30px; justify-content: flex-end; gap: 9px; border-top: 1px solid var(--fl-line); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); }
.fl-profile-dialog footer button { min-height: 44px; padding: 0 17px; border: 1px solid var(--fl-line); border-radius: 12px; background: #fff; color: #5d6370; font: 560 12px/1 "Manrope", sans-serif; cursor: pointer; }
.fl-profile-dialog footer button[type="submit"] { border-color: var(--fl-primary); background: var(--fl-primary); color: #fff; }

.fl-public-profile--empty { min-height: 70vh; display: grid; place-items: center; }
.fl-profile-empty { display: flex; max-width: 680px; min-height: 380px; padding: 55px; align-items: center; justify-content: center; flex-direction: column; border: 1px solid var(--fl-line); border-radius: 32px; background: #fff; text-align: center; box-shadow: var(--fl-shadow); }
.fl-profile-empty > span { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 20px; background: #6757f5; color: var(--fl-accent); font-size: 25px; }
.fl-profile-empty > p { margin: 22px 0 8px; color: var(--fl-primary-deep); font-size: 11px; font-weight: 580; letter-spacing: .1em; text-transform: uppercase; }
.fl-profile-empty h1 { margin: 0; font-size: 38px; font-weight: 600; letter-spacing: -.045em; }
.fl-profile-empty__actions { display: flex; margin-top: 26px; gap: 10px; }

@keyframes fl-profile-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-9px) rotate(5deg); } }

@media (max-width: 1040px) {
    .fl-profile-identity { padding-left: 175px; }
    .fl-profile-layout { grid-template-columns: minmax(0,1fr); }
    .fl-profile-sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
    .fl-profile-logout { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
    .fl-public-profile { padding-top: 22px; }
    .fl-profile-cover { border-radius: 24px; }
    .fl-profile-identity { width: calc(100% - 24px); margin-top: -50px; padding: 92px 22px 22px; grid-template-columns: 1fr; }
    .fl-profile-portrait { left: 22px; top: -62px; width: 122px; height: 122px; border-radius: 32px; }
    .fl-profile-portrait > img { border-radius: 24px; }
    .fl-profile-identity__actions { min-width: 0; align-items: flex-start; }
    .fl-profile-identity__actions .fl-button { width: auto; }
    .fl-profile-metrics { margin-inline: 12px; grid-template-columns: repeat(2,minmax(0,1fr)); }
    .fl-profile-metrics > div:nth-child(2) { border-right: 0; }
    .fl-profile-metrics > div:nth-child(-n+2) { border-bottom: 1px solid var(--fl-line); }
    .fl-profile-layout { margin-top: 54px; }
    .fl-profile-bento { grid-template-columns: 1fr; }
    .fl-profile-about { grid-row: auto; }
    .fl-reviews-layout { grid-template-columns: 1fr; }
    .fl-rating-orbit { min-height: 235px; }
    .fl-rating-orbit > div { top: 36px; }
    .fl-portfolio-card__visual { height: 180px; }
    .fl-client-budget { grid-template-columns: 1fr 1fr; }
    .fl-client-budget article:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .fl-public-profile { padding-bottom: 78px; }
    .fl-public-profile > .fl-container { width: min(100% - 20px, 1240px); }
    .fl-profile-cover { height: 226px; border-radius: 20px; }
    .fl-profile-cover__label { left: 15px; top: 14px; }
    .fl-profile-cover__edit { right: 13px; top: 13px; width: 42px; padding: 0; justify-content: center; font-size: 0; }
    .fl-profile-cover__edit span { font-size: 17px; }
    .fl-profile-identity { width: calc(100% - 14px); padding: 76px 17px 19px; border-radius: 21px; }
    .fl-profile-portrait { left: 17px; top: -55px; width: 105px; height: 105px; border-width: 5px; border-radius: 28px; font-size: 30px; }
    .fl-profile-portrait > img { border-radius: 21px; }
    .fl-profile-roleline { margin-bottom: 10px; }
    .fl-profile-identity h1 { font-size: 30px; }
    .fl-profile-identity__copy > p { font-size: 14px; }
    .fl-profile-meta { gap: 9px; flex-direction: column; }
    .fl-profile-identity__actions { width: 100%; }
    .fl-profile-identity__actions .fl-button { width: 100%; }
    .fl-profile-metrics { border-radius: 18px; }
    .fl-profile-metrics > div { min-height: 91px; padding: 15px; }
    .fl-profile-metrics strong { font-size: 18px; }
    .fl-profile-stars { display: none; }
    .fl-profile-section { margin-bottom: 62px; }
    .fl-profile-section__head { align-items: start; flex-direction: column; gap: 6px; }
    .fl-profile-section__head h2 { font-size: 29px; }
    .fl-profile-about { padding: 27px 24px; }
    .fl-profile-about p { font-size: 14px; }
    .fl-portfolio-grid, .fl-service-grid, .fl-client-projects { grid-template-columns: 1fr; }
    .fl-portfolio-card__visual { height: 205px; }
    .fl-completed-list > article { padding: 18px; grid-template-columns: 35px minmax(0,1fr); }
    .fl-completed-list__mark { width: 34px; height: 34px; }
    .fl-completed-list article > div:last-child { grid-column: 2; text-align: left; }
    .fl-completed-list article > div:last-child strong { display: inline; margin-right: 7px; }
    .fl-client-budget { grid-template-columns: 1fr; }
    .fl-client-budget article:first-child { grid-column: auto; }
    .fl-profile-sidebar { grid-template-columns: 1fr; }
    .fl-profile-dialog { width: 100%; max-height: 100dvh; margin: auto 0 0; border-radius: 24px 24px 0 0; }
    .fl-profile-dialog > form { max-height: 100dvh; }
    .fl-profile-dialog header { padding: 21px 18px 17px; }
    .fl-profile-dialog header h2 { font-size: 23px; }
    .fl-profile-dialog__media { padding: 20px 18px 8px; grid-template-columns: 1fr; }
    .fl-profile-dialog__media label { grid-template-columns: 94px 1fr; align-items: center; }
    .fl-profile-dialog__media label > span { grid-column: 1 / -1; }
    .fl-profile-dialog__media label > i { grid-row: 2 / 4; }
    .fl-profile-dialog__remove { padding-inline: 18px; flex-direction: column; gap: 8px; }
    .fl-profile-dialog__grid { padding: 16px 18px 24px; grid-template-columns: 1fr; }
    .fl-profile-dialog__grid label.is-wide { grid-column: auto; }
    .fl-profile-slug { flex-direction: column; }
    .fl-profile-slug i { min-height: 35px; }
    .fl-profile-dialog__email { margin-inline: 18px; grid-template-columns: 1fr; }
    .fl-profile-dialog__email i { grid-column: 1; grid-row: auto; }
    .fl-profile-dialog footer { padding: 13px 18px; }
    .fl-profile-empty { min-height: 330px; padding: 35px 20px; }
    .fl-profile-empty h1 { font-size: 30px; }
    .fl-profile-empty__actions { width: 100%; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .fl-profile-cover__mesh i:nth-child(2) { animation: none; }
    .fl-review-card, .fl-portfolio-card, .fl-service-card { transition: none; }
}
.fl-profile-private-note { position: relative; margin: 0 0 16px; padding: 16px 18px; border: 1px solid var(--fl-line); border-radius: 12px; background: var(--fl-surface, #fff); color: var(--fl-ink); font-size: 14px; line-height: 1.65; }
.fl-profile-private-note strong { font-weight: 600; }
.fl-profile-private-note a { color: var(--fl-primary-deep); text-decoration: underline; text-underline-offset: 3px; }
html[data-theme="dark"] .fl-profile-private-note { background: #1a1d25; color: #d5d8df; border-color: #363c48; }
html[data-theme="dark"] .fl-profile-private-note a { color: #c9c2ff; }

/* zz-foundation.css */
/* Loaded after the legacy profile sheet: these are the canonical foundation styles. */
.fl-public-profile [hidden],
.fl-profile-dialog [hidden],
.fl-media-editor [hidden] { display: none !important; }

.fl-public-profile *,
.fl-profile-dialog *,
.fl-media-editor *,
.fl-confirm-dialog *,
.fl-profile-gallery * { box-sizing: border-box; }

.fl-profile-toast-region {
    position: fixed;
    z-index: 2200;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: min(390px, calc(100vw - 32px));
    gap: 10px;
    pointer-events: none;
}
.fl-profile-toast {
    display: grid;
    min-height: 68px;
    padding: 13px 13px 13px 15px;
    grid-template-columns: 34px minmax(0,1fr) 34px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(38,143,96,.24);
    border-radius: 18px;
    background: rgba(239,252,245,.97);
    color: #155c3d;
    box-shadow: 0 22px 65px rgba(18,62,43,.2);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    animation: fl-toast-in .35s cubic-bezier(.2,.8,.2,1) both;
}
.fl-profile-toast.is-error { border-color: rgba(190,62,62,.22); background: rgba(255,244,244,.98); color: #913a3a; }
.fl-profile-toast > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: #d8f5e5; font-size: 15px; font-weight: 650; }
.fl-profile-toast.is-error > span { background: #f8dede; }
.fl-profile-toast p { margin: 0; font-size: 14px; line-height: 1.45; }
.fl-profile-toast button { width: 34px; height: 34px; padding: 0; border: 0; border-radius: 10px; background: transparent; color: currentColor; font: 400 22px/1 Manrope,sans-serif; cursor: pointer; opacity: .68; }
.fl-profile-toast.is-leaving { animation: fl-toast-out .25s ease both; }

.fl-profile-cover__view { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.fl-profile-cover__view:disabled { cursor: default; }
.fl-profile-cover__view img { width: 100%; height: 100%; object-fit: cover; }
.fl-profile-cover__actions { position: absolute; z-index: 4; right: 22px; top: 21px; display: flex; gap: 7px; }
.fl-profile-cover__actions button { display: inline-flex; min-height: 43px; padding: 0 15px; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.3); border-radius: 13px; background: rgba(17,19,26,.54); color: #fff; font: 560 13px/1 Manrope,sans-serif; cursor: pointer; backdrop-filter: blur(13px); transition: transform .2s ease, background .2s ease; }
.fl-profile-cover__actions button:hover { transform: translateY(-2px); background: rgba(17,19,26,.75); }
.fl-profile-cover__actions .is-danger { width: 43px; padding: 0; color: #ffdede; font-size: 21px; }

.fl-profile-portrait > .fl-profile-portrait__photo { position: absolute; inset: 0; display: grid; width: 100%; height: 100%; padding: 0; place-items: center; overflow: hidden; border: 0; border-radius: 29px; background: transparent; color: inherit; font: inherit; cursor: zoom-in; transform: none; }
.fl-profile-portrait > .fl-profile-portrait__photo:disabled { cursor: default; }
.fl-profile-portrait__photo img { width: 100%; height: 100%; object-fit: cover; }
.fl-profile-portrait__photo span { transform: rotate(2deg); }
.fl-profile-portrait > .fl-profile-portrait__edit { position: absolute; z-index: 4; right: -9px; bottom: -9px; display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 4px solid #fff; border-radius: 50%; background: var(--fl-ink); color: #fff; font: 520 18px/1 Manrope,sans-serif; cursor: pointer; transform: rotate(2deg); }
.fl-profile-portrait > .fl-profile-portrait__remove { position: absolute; z-index: 4; left: -7px; bottom: -7px; display: grid; width: 32px; height: 32px; padding: 0; place-items: center; border: 3px solid #fff; border-radius: 50%; background: #fff0f0; color: #a43f3f; font: 560 18px/1 Manrope,sans-serif; cursor: pointer; transform: rotate(2deg); box-shadow: 0 8px 18px rgba(83,31,31,.12); }

.fl-profile-name-row { display: flex; min-width: 0; align-items: center; gap: 10px; }
.fl-profile-name-row h1 { min-width: 0; overflow-wrap: anywhere; }
.fl-profile-name-row > button { display: grid; width: 37px; height: 37px; flex: 0 0 auto; padding: 0; place-items: center; border: 1px solid #dedfe8; border-radius: 12px; background: #fff; color: var(--fl-primary-deep); font: 560 15px/1 Manrope,sans-serif; cursor: pointer; box-shadow: 0 7px 18px rgba(45,41,90,.07); transition: transform .2s ease, border-color .2s ease; }
.fl-profile-name-row > button:hover { transform: translateY(-2px); border-color: #aaa2f7; }
.fl-profile-identity__copy > p { font-size: 16px; font-weight: 420; }
.fl-profile-meta { font-size: 13px; }
.fl-profile-meta b { font-weight: 450; }
.fl-profile-identity__actions .fl-button { text-align: center; }

.fl-profile-metrics { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.fl-profile-metrics > article { position: relative; display: grid; min-height: 118px; padding: 20px 22px; grid-template-columns: 54px minmax(0,1fr); grid-template-rows: 1fr auto; align-items: center; column-gap: 16px; overflow: hidden; border: 1px solid var(--fl-line); border-radius: 21px; background: rgba(255,255,255,.88); box-shadow: 0 15px 42px rgba(35,31,80,.055); }
.fl-profile-metrics > article::after { content:""; position:absolute; width:100px; height:100px; right:-58px; top:-58px; border-radius:50%; background:rgba(103,87,245,.07); }
.fl-profile-metrics article > i { position:relative; grid-row: 1 / 3; display: grid; width: 54px; height: 54px; place-items: center; border-radius: 17px; background: #f0efff; color: #5a4be2; font-style: normal; }
.fl-profile-metrics article:nth-child(2) > i { background: #fff5d9; color: #9a6711; }
.fl-profile-metrics article:nth-child(3) > i { background: #eaf8dc; color: #487124; }
.fl-metric-icon.is-rating::before { content:"★"; transform:translateY(-1px); font-size:27px; line-height:1; text-shadow:0 4px 12px rgba(90,75,226,.2); }
.fl-metric-icon.is-reviews::before { content:""; position:absolute; width:25px; height:18px; border:2px solid currentColor; border-radius:8px; box-sizing:border-box; }
.fl-metric-icon.is-reviews::after { content:""; position:absolute; left:15px; bottom:15px; width:7px; height:7px; border-left:2px solid currentColor; border-bottom:2px solid currentColor; background:#fff5d9; transform:skewY(-35deg); }
.fl-metric-icon.is-projects::before { content:""; position:absolute; width:27px; height:27px; border:2px solid currentColor; border-radius:50%; box-sizing:border-box; }
.fl-metric-icon.is-projects::after { content:""; position:absolute; width:12px; height:6px; margin-top:-3px; border-left:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(-45deg); }
.fl-profile-metrics strong { align-self: end; font-size: 29px; font-weight: 610; line-height: 1; letter-spacing: -.04em; }
.fl-profile-metrics article > span { align-self: start; margin-top: 6px; color: var(--fl-muted); font-size: 12px; line-height: 1.35; }

.fl-profile-layout { grid-template-columns: minmax(0,1fr) 320px; grid-template-areas: "main sidebar"; }
.fl-profile-main { grid-area: main; }
.fl-profile-sidebar { grid-area: sidebar; }
.fl-profile-section__head > button { min-height: 40px; padding: 0 13px; border: 1px solid #dfdfea; border-radius: 12px; background: #fff; font-size: 13px; }
.fl-profile-section__head .fl-kicker, .fl-profile-section__head > span { font-size: 12px; }

.fl-profile-info-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.fl-profile-info-card { position: relative; min-height: 132px; padding: 23px 24px; overflow: hidden; border: 1px solid var(--fl-line); border-radius: 22px; background: #fff; }
.fl-profile-info-card::after { content:""; position:absolute; width:100px; height:100px; right:-52px; bottom:-58px; border-radius:50%; background:rgba(103,87,245,.07); }
.fl-profile-info-card > span, .fl-profile-info-card small { display: block; margin-bottom: 17px; color: #777d8b; font-size: 12px; font-weight: 570; letter-spacing: .055em; text-transform: uppercase; }
.fl-profile-info-card strong { position: relative; z-index: 1; display: block; font-size: 17px; font-weight: 570; line-height: 1.45; }
.fl-profile-info-card--about { min-height: 205px; grid-column: 1 / -1; }
.fl-profile-info-card--about p { position: relative; z-index: 1; max-width: 740px; margin: 0; color: #454b59; font-size: 16px; line-height: 1.78; white-space: pre-line; }
.fl-profile-info-card--skills { grid-column: 1 / -1; }
.fl-profile-info-card--skills > div { display: flex; gap: 8px; flex-wrap: wrap; }
.fl-profile-info-card--skills i { padding: 8px 10px; border-radius: 10px; background: #f1f0ff; color: #5143de; font-style: normal; font-size: 13px; }
.fl-profile-info-card--company { display: flex; align-items: center; gap: 15px; }
.fl-profile-info-card--company > span { display: grid; width: 58px; height: 58px; flex: 0 0 auto; margin: 0; place-items: center; overflow: hidden; border-radius: 16px; background: #f1f0ff; }
.fl-profile-info-card--company img { width: 100%; height: 100%; object-fit: contain; }
.fl-profile-info-card--company small { margin: 0 0 7px; }
.fl-profile-info-empty { display: flex; min-height: 190px; padding: 28px; grid-column: 1 / -1; align-items: center; justify-content: center; flex-direction: column; border: 1px dashed #cfd1dc; border-radius: 22px; background: rgba(255,255,255,.62); color: var(--fl-ink); text-align: center; cursor: pointer; }
.fl-profile-info-empty i { display: grid; width: 45px; height: 45px; margin-bottom: 13px; place-items: center; border-radius: 14px; background: #eeecff; color: #5143de; font-style: normal; font-size: 18px; }
.fl-profile-info-empty strong { font-size: 16px; font-weight: 590; }
.fl-profile-info-empty span { max-width: 480px; margin-top: 7px; color: var(--fl-muted); font-size: 13px; line-height: 1.55; }

.fl-profile-completion { padding: 23px; border: 1px solid #dedbf8; border-radius: 23px; background: linear-gradient(155deg,#fff 0%,#f4f2ff 100%); box-shadow: 0 18px 48px rgba(58,48,135,.1); }
.fl-profile-completion__top { display: grid; grid-template-columns: 68px minmax(0,1fr); align-items: center; gap: 14px; }
.fl-profile-completion__ring { position: relative; display: grid; width: 68px; height: 68px; place-items: center; border-radius: 50%; background: conic-gradient(var(--fl-primary) var(--completion),#e3e1f4 0); }
.fl-profile-completion__ring::after { content:""; position:absolute; inset:7px; border-radius:50%; background:#fff; }
.fl-profile-completion__ring strong { position: relative; z-index: 1; font-size: 15px; font-weight: 650; }
.fl-profile-completion__top span { color: var(--fl-primary-deep); font-size: 12px; font-weight: 580; }
.fl-profile-completion h2 { margin: 5px 0 0; font-size: 17px; font-weight: 590; line-height: 1.35; }
.fl-profile-completion > p { margin: 17px 0 14px; color: #656b78; font-size: 13px; line-height: 1.55; }
.fl-profile-completion ul { display: grid; margin: 0; padding: 0; gap: 7px; list-style: none; }
.fl-profile-completion li button { display: grid; width: 100%; min-height: 48px; padding: 8px 9px; grid-template-columns: 28px minmax(0,1fr) 18px; align-items: center; gap: 9px; border: 1px solid #e6e4f4; border-radius: 13px; background: rgba(255,255,255,.82); color: #414654; text-align: left; cursor: pointer; }
.fl-profile-completion li i { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; background: #eeecff; color: #5143de; font-style: normal; }
.fl-profile-completion li span { font-size: 12px; line-height: 1.35; }
.fl-profile-completion li b { color: #817aab; font-weight: 500; }
.fl-profile-completion.is-complete { border-color: #dcebcf; background: linear-gradient(155deg,#fff,#f1fae8); }
.fl-profile-completion.is-complete .fl-profile-completion__ring { background: #8dcc49; }
.fl-profile-completion.is-complete ul { display: none; }

.fl-profile-side-card > span { font-size: 12px; }
.fl-profile-side-card:not(.fl-profile-side-card--accent) strong { font-size: 13px; }
.fl-profile-side-card button, .fl-profile-logout button { font-size: 12px; }
.fl-profile-side-card p { font-size: 13px; }
.fl-review-card__author small, .fl-review-card time, .fl-completed-list small, .fl-client-projects__top time,
.fl-portfolio-card__copy small, .fl-service-card small, .fl-service-card__index,
.fl-service-card footer, .fl-client-projects__top span, .fl-client-projects footer a span,
.fl-client-projects footer a strong, .fl-client-projects footer > div span, .fl-completed-list p,
.fl-completed-list article > div:last-child span { font-size: 12px; }
.fl-review-card > p, .fl-portfolio-card p, .fl-service-card p { font-size: 13px; }

.fl-profile-file-input { position: fixed; width: 1px; height: 1px; left: -9999px; opacity: 0; pointer-events: none; }
.fl-profile-dialog--small { width: min(540px,calc(100% - 30px)); }
.fl-profile-dialog header span { font-size: 12px; }
.fl-profile-dialog header p { font-size: 13px; line-height: 1.5; }
.fl-profile-form-grid { display: grid; padding: 24px 30px 30px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.fl-profile-form-grid > label { display: grid; align-content: start; gap: 8px; }
.fl-profile-form-grid > .is-wide { grid-column: 1 / -1; }
.fl-profile-form-grid label > span, .fl-tag-editor > label { color: #555c69; font-size: 13px; font-weight: 570; }
.fl-profile-form-grid input, .fl-profile-form-grid textarea, .fl-tag-editor input { width: 100%; min-height: 49px; padding: 0 14px; border: 1px solid #dfe1e9; border-radius: 13px; outline: 0; background: #fff; color: var(--fl-ink); font: 420 14px/1.5 Manrope,sans-serif; transition: border-color .2s ease,box-shadow .2s ease; }
.fl-profile-form-grid textarea { min-height: 145px; padding-block: 13px; resize: vertical; }
.fl-profile-form-grid input:focus, .fl-profile-form-grid textarea:focus, .fl-tag-editor input:focus { border-color:#9188f5; box-shadow:0 0 0 3px rgba(103,87,245,.11); }
.fl-profile-form-grid label > small, .fl-tag-editor > small { color:#858a97; font-size:12px; line-height:1.45; }
.fl-profile-form-grid [data-profile-error] { min-height: 0; color:#b24141; }
.fl-profile-form-grid [data-profile-error]:empty { display:none; }
.fl-profile-form-grid [aria-invalid="true"] { border-color:#d46666; box-shadow:0 0 0 3px rgba(202,78,78,.09); }
.fl-profile-id-field { display:flex; min-width:0; align-items:stretch; overflow:hidden; border:1px solid #dfe1e9; border-radius:13px; }
.fl-profile-id-field i, .fl-profile-id-field b { display:flex; padding:0 11px; align-items:center; background:#f4f4f7; color:#8a8f9c; font-style:normal; font-size:12px; font-weight:450; white-space:nowrap; }
.fl-profile-id-field input { min-width:0; border:0; border-radius:0; box-shadow:none!important; }
.fl-profile-id-field.is-invalid { border-color:#d46666; box-shadow:0 0 0 3px rgba(202,78,78,.09); }
.fl-profile-dialog footer button[aria-busy="true"], .fl-media-editor footer button[aria-busy="true"] { opacity:.65; cursor:wait; }

.fl-company-logo-editor { display:flex; min-height:95px; padding:13px; align-items:center; justify-content:space-between; gap:16px; border:1px solid #e0e1e8; border-radius:16px; background:#fafafd; }
.fl-company-logo-editor > div { display:flex; align-items:center; gap:12px; }
.fl-company-logo-editor [data-profile-company-logo-preview] { display:grid; width:64px; height:64px; place-items:center; overflow:hidden; border-radius:16px; background:#eeecff; color:#5a4be2; font-size:21px; }
.fl-company-logo-editor img { width:100%; height:100%; object-fit:contain; }
.fl-company-logo-editor p { margin:0; }
.fl-company-logo-editor strong, .fl-company-logo-editor small { display:block; }
.fl-company-logo-editor strong { font-size:14px; font-weight:590; }
.fl-company-logo-editor small { margin-top:4px; color:#858a97; font-size:12px; }
.fl-company-logo-editor > div:last-child { gap:7px; }
.fl-company-logo-editor button { min-height:38px; padding:0 12px; border:1px solid #dadbe5; border-radius:11px; background:#fff; color:#5143de; font:560 12px/1 Manrope,sans-serif; cursor:pointer; }
.fl-company-logo-editor button.is-danger { color:#a44141; }

.fl-tag-editor { display:grid; gap:8px; }
.fl-tag-editor > div { display:flex; min-height:52px; padding:7px; align-items:center; gap:6px; flex-wrap:wrap; border:1px solid #dfe1e9; border-radius:13px; background:#fff; }
.fl-tag-editor [data-profile-tag-list] { display:contents; }
.fl-tag-editor [data-profile-tag-list] button { display:inline-flex; min-height:32px; padding:0 9px; align-items:center; gap:7px; border:0; border-radius:9px; background:#eeecff; color:#5143de; font:520 12px/1 Manrope,sans-serif; cursor:pointer; }
.fl-tag-editor [data-profile-tag-list] button i { font-style:normal; font-size:15px; }
.fl-tag-editor input[data-profile-tag-input] { width:180px; min-width:130px; min-height:34px; flex:1; padding:0 6px; border:0; box-shadow:none; }

.fl-media-editor { width:min(900px,calc(100% - 28px)); max-height:calc(100dvh - 28px); padding:0; overflow:hidden; border:0; border-radius:27px; background:#fff; color:var(--fl-ink); box-shadow:0 40px 130px rgba(17,16,39,.36); }
.fl-media-editor[open] { display:grid; grid-template-rows:auto minmax(0,1fr) auto; }
.fl-media-editor::backdrop, .fl-confirm-dialog::backdrop, .fl-profile-gallery::backdrop { background:rgba(12,13,22,.72); backdrop-filter:blur(9px); }
.fl-media-editor header { display:flex; padding:24px 27px 19px; align-items:flex-start; justify-content:space-between; gap:20px; border-bottom:1px solid var(--fl-line); }
.fl-media-editor header span { color:var(--fl-primary-deep); font-size:12px; font-weight:590; letter-spacing:.08em; text-transform:uppercase; }
.fl-media-editor header h2 { margin:6px 0 5px; font-size:27px; font-weight:600; letter-spacing:-.035em; }
.fl-media-editor header p { margin:0; color:var(--fl-muted); font-size:13px; }
.fl-media-editor header > button { width:40px; height:40px; padding:0; border:0; border-radius:12px; background:#f0f1f5; color:#424653; font:400 25px/1 Manrope,sans-serif; cursor:pointer; }
.fl-media-editor__body { min-height:0; padding:22px 27px; overflow:auto; overscroll-behavior:contain; }
.fl-media-editor__stage { position:relative; width:100%; margin:auto; overflow:hidden; border-radius:19px; background:repeating-conic-gradient(#e9eaf0 0 25%,#f5f5f8 0 50%) 50%/22px 22px; touch-action:none; user-select:none; box-shadow:inset 0 0 0 1px rgba(18,19,30,.12); }
.fl-media-editor__stage[data-kind="cover"] { aspect-ratio:3/1; }
.fl-media-editor__stage[data-kind="avatar"], .fl-media-editor__stage[data-kind="company_logo"] { width:min(470px,100%,calc(100dvh - 340px)); aspect-ratio:1; }
.fl-media-editor__stage canvas { display:block; width:100%; height:100%; cursor:grab; }
.fl-media-editor__stage canvas:active { cursor:grabbing; }
.fl-media-editor__stage canvas:focus-visible { outline:3px solid rgba(255,255,255,.92); outline-offset:-7px; }
.fl-media-editor__stage::after { content:""; position:absolute; inset:0; border:2px solid rgba(255,255,255,.88); border-radius:inherit; box-shadow:inset 0 0 0 999px rgba(14,15,24,.12); pointer-events:none; }
.fl-media-editor__stage[data-kind="avatar"]::after { inset:6%; border-radius:50%; box-shadow:0 0 0 999px rgba(14,15,24,.24); }
.fl-media-editor__stage[data-kind="company_logo"]::after { inset:6%; border-radius:24px; box-shadow:0 0 0 999px rgba(14,15,24,.18); }
.fl-media-editor__stage > i { display:none; }
.fl-media-editor__stage[data-kind="cover"] > i { position:absolute; z-index:2; inset:13% 27%; display:block; border:1px dashed rgba(255,255,255,.72); border-radius:13px; pointer-events:none; }
.fl-media-editor__controls { display:grid; margin-top:18px; grid-template-columns:minmax(0,1fr) auto auto; align-items:end; gap:10px; }
.fl-media-editor__controls label { display:grid; gap:7px; }
.fl-media-editor__controls label span { color:#656b78; font-size:13px; font-weight:560; }
.fl-media-editor__controls input { width:100%; accent-color:var(--fl-primary); }
.fl-media-editor__controls button, .fl-media-editor footer button { min-height:43px; padding:0 14px; border:1px solid #dfe0e8; border-radius:12px; background:#fff; color:#555b68; font:560 12px/1 Manrope,sans-serif; cursor:pointer; }
.fl-media-editor footer { display:flex; padding:15px 27px; justify-content:flex-end; gap:9px; border-top:1px solid var(--fl-line); }
.fl-media-editor footer [data-profile-media-save] { border-color:var(--fl-primary); background:var(--fl-primary); color:#fff; }

.fl-confirm-dialog { width:min(420px,calc(100% - 28px)); padding:0; border:0; border-radius:24px; background:#fff; color:var(--fl-ink); box-shadow:0 35px 100px rgba(16,16,30,.34); }
.fl-confirm-dialog > div { padding:29px; text-align:center; }
.fl-confirm-dialog > div > span { display:grid; width:50px; height:50px; margin:0 auto 17px; place-items:center; border-radius:16px; background:#fff0f0; color:#a44141; font-size:21px; font-weight:650; }
.fl-confirm-dialog h2 { margin:0; font-size:23px; font-weight:610; letter-spacing:-.03em; }
.fl-confirm-dialog p { margin:9px 0 24px; color:var(--fl-muted); font-size:13px; line-height:1.55; }
.fl-confirm-dialog footer { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.fl-confirm-dialog button { min-height:44px; border:1px solid #dedfe7; border-radius:12px; background:#fff; color:#555b68; font:560 12px/1 Manrope,sans-serif; cursor:pointer; }
.fl-confirm-dialog [data-profile-confirm-apply] { border-color:#a94444; background:#a94444; color:#fff; }

.fl-profile-gallery { width:100vw; max-width:none; height:100dvh; max-height:none; margin:0; padding:0; overflow:hidden; border:0; background:#101117; color:#fff; }
.fl-profile-gallery > [data-profile-gallery-close] { position:absolute; z-index:4; right:max(24px,env(safe-area-inset-right)); top:max(20px,env(safe-area-inset-top)); width:48px; height:48px; padding:0; border:1px solid rgba(255,255,255,.18); border-radius:15px; background:rgba(255,255,255,.1); color:#fff; font:400 28px/1 Manrope,sans-serif; cursor:pointer; backdrop-filter:blur(12px); }
.fl-profile-gallery__nav { position:absolute; z-index:4; top:50%; display:grid; width:56px; height:56px; padding:0; place-items:center; border:1px solid rgba(255,255,255,.2); border-radius:18px; background:rgba(20,21,29,.58); color:#fff; cursor:pointer; backdrop-filter:blur(14px); transform:translateY(-50%); transition:background .18s ease,transform .18s ease; }
.fl-profile-gallery__nav.is-prev { left:max(24px,env(safe-area-inset-left)); }
.fl-profile-gallery__nav.is-next { right:max(24px,env(safe-area-inset-right)); }
.fl-profile-gallery__nav span { font:400 28px/1 Manrope,sans-serif; transform:translateY(-1px); }
.fl-profile-gallery__nav:hover { background:rgba(103,87,245,.82); transform:translateY(-50%) scale(1.04); }
.fl-profile-gallery__nav:focus-visible,
.fl-profile-gallery > [data-profile-gallery-close]:focus-visible { outline:3px solid rgba(255,255,255,.84); outline-offset:3px; }
.fl-profile-gallery figure { display:grid; width:100%; height:100%; margin:0; padding:max(72px,calc(56px + env(safe-area-inset-top))) max(28px,env(safe-area-inset-right)) max(24px,env(safe-area-inset-bottom)) max(28px,env(safe-area-inset-left)); grid-template-rows:minmax(0,1fr) auto; place-items:center; gap:16px; }
.fl-profile-gallery img { max-width:100%; max-height:calc(100dvh - 150px); object-fit:contain; border-radius:18px; box-shadow:0 26px 80px rgba(0,0,0,.36); }
.fl-profile-gallery figcaption { text-align:center; }
.fl-profile-gallery figcaption span { color:var(--fl-accent); font-size:12px; font-weight:590; letter-spacing:.09em; text-transform:uppercase; }
.fl-profile-gallery figcaption small { display:inline-block; margin-left:9px; padding:4px 8px; border:1px solid rgba(255,255,255,.15); border-radius:8px; color:#d7d8df; font-size:11px; line-height:1; vertical-align:1px; }
.fl-profile-gallery h2 { margin:6px 0 0; font-size:18px; font-weight:540; }

@keyframes fl-toast-in { from { opacity:0; transform:translateY(14px) scale(.97); } }
@keyframes fl-toast-out { to { opacity:0; transform:translateY(10px) scale(.98); } }

@media (max-width:1040px) {
    .fl-profile-layout, .fl-profile-layout.is-manage { grid-template-columns:1fr; grid-template-areas:"sidebar" "main"; }
    .fl-profile-sidebar { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .fl-profile-completion { grid-column:1 / -1; }
}
@media (max-width:800px) {
    .fl-profile-metrics { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .fl-profile-metrics > article { min-height:106px; padding:16px; grid-template-columns:48px minmax(0,1fr); column-gap:11px; }
    .fl-profile-metrics article > i { width:48px; height:48px; border-radius:15px; }
    .fl-profile-metrics strong { font-size:23px; }
    .fl-profile-info-grid { grid-template-columns:1fr; }
    .fl-profile-info-card--about, .fl-profile-info-card--skills, .fl-profile-info-empty { grid-column:auto; }
}
@media (max-width:600px) {
    .fl-profile-toast-region { right:12px; bottom:calc(12px + env(safe-area-inset-bottom)); width:calc(100vw - 24px); }
    .fl-profile-cover__actions { right:12px; top:12px; }
    .fl-profile-cover__actions button:first-child { width:43px; padding:0; font-size:0; }
    .fl-profile-cover__actions button:first-child span { font-size:18px; }
    .fl-profile-name-row { align-items:flex-start; }
    .fl-profile-name-row > button { width:35px; height:35px; }
    .fl-profile-metrics { margin-inline:7px; gap:6px; }
    .fl-profile-metrics > article { min-height:117px; padding:13px 8px; grid-template-columns:1fr; grid-template-rows:35px auto auto; justify-items:center; text-align:center; }
    .fl-profile-metrics article > i { grid-row:auto; width:42px; height:42px; border-radius:13px; }
    .fl-profile-metrics strong { font-size:21px; }
    .fl-profile-metrics span { margin-top:4px; font-size:12px; }
    .fl-profile-sidebar { grid-template-columns:1fr; }
    .fl-profile-completion { grid-column:auto; }
    .fl-profile-info-card { min-height:118px; padding:20px; }
    .fl-profile-info-card--about p { font-size:14px; }
    .fl-profile-dialog--small, .fl-profile-dialog { width:100%; max-height:100dvh; margin:auto 0 0; border-radius:24px 24px 0 0; }
    .fl-profile-dialog header { padding-top:max(21px,env(safe-area-inset-top)); }
    .fl-profile-dialog footer { padding-bottom:max(13px,env(safe-area-inset-bottom)); }
    .fl-profile-form-grid { padding:19px 18px 25px; grid-template-columns:1fr; }
    .fl-profile-form-grid > .is-wide { grid-column:auto; }
    .fl-profile-id-field { flex-wrap:wrap; }
    .fl-profile-id-field i { width:100%; min-height:34px; }
    .fl-company-logo-editor { align-items:flex-start; flex-direction:column; }
    .fl-company-logo-editor > div:last-child { width:100%; }
    .fl-company-logo-editor > div:last-child button { flex:1; }
    .fl-media-editor { width:100%; max-height:100dvh; margin:auto 0 0; border-radius:24px 24px 0 0; }
    .fl-media-editor header { padding:max(20px,env(safe-area-inset-top)) 18px 16px; }
    .fl-media-editor header h2 { font-size:23px; }
    .fl-media-editor__body { padding:17px 18px; }
    .fl-media-editor__controls { grid-template-columns:1fr 1fr; }
    .fl-media-editor__controls label { grid-column:1 / -1; }
    .fl-media-editor footer { padding:13px 18px max(13px,env(safe-area-inset-bottom)); }
    .fl-media-editor footer button { flex:1; padding-inline:8px; }
    .fl-profile-gallery > [data-profile-gallery-close] { right:max(13px,env(safe-area-inset-right)); top:max(13px,env(safe-area-inset-top)); }
    .fl-profile-gallery__nav { top:50%; width:48px; height:48px; border-radius:15px; transform:translateY(-50%); }
    .fl-profile-gallery__nav.is-prev { left:max(8px,env(safe-area-inset-left)); }
    .fl-profile-gallery__nav.is-next { right:max(8px,env(safe-area-inset-right)); }
    .fl-profile-gallery__nav:hover { transform:translateY(-50%) scale(1.04); }
    .fl-profile-gallery figure { padding:max(68px,calc(52px + env(safe-area-inset-top))) max(12px,env(safe-area-inset-right)) max(18px,env(safe-area-inset-bottom)) max(12px,env(safe-area-inset-left)); }
    .fl-profile-gallery img { max-height:calc(100dvh - 138px); border-radius:13px; }
}
@media (max-height:650px) and (orientation:landscape) {
    .fl-media-editor header { padding-block:13px 11px; }
    .fl-media-editor header p { display:none; }
    .fl-media-editor__body { padding-block:12px; }
    .fl-media-editor__stage[data-kind="avatar"], .fl-media-editor__stage[data-kind="company_logo"] { width:min(310px,100%); }
    .fl-media-editor__controls { margin-top:11px; }
    .fl-media-editor footer { padding-block:10px; }
}
@media (prefers-reduced-motion:reduce) {
    .fl-profile-toast { animation:none; }
}

/* Profile workspace: content-first metrics and a quieter, useful sidebar. */
.fl-profile-workspace,
.fl-profile-workspace.is-manage {
    display:grid;
    margin-top:30px;
    grid-template-columns:minmax(0,1fr) 304px;
    grid-template-areas:"main sidebar";
    grid-template-rows:auto;
    align-items:start;
    gap:14px 28px;
}
.fl-profile-workspace.is-public {
    grid-template-areas:"main sidebar";
    grid-template-rows:auto;
}
.fl-profile-workspace .fl-profile-main { grid-area:main; min-width:0; }
.fl-profile-workspace .fl-profile-sidebar {
    --fl-profile-sticky-top-gap:102px;
    --fl-profile-sticky-bottom-gap:18px;
    grid-area:sidebar;
    position:sticky;
    top:var(--fl-profile-sticky-offset,var(--fl-profile-sticky-top-gap));
    min-width:0;
    align-self:start;
}
.fl-profile-main > .fl-profile-metrics { margin:0 0 54px; }
.fl-profile-metrics > article {
    min-height:112px;
    border-radius:17px;
    box-shadow:0 14px 36px rgba(35,31,80,.045);
}
.fl-profile-metrics > article::after,
.fl-profile-info-card::after,
.fl-profile-about::after,
.fl-rating-orbit::after,
.fl-portfolio-card__visual::before,
.fl-portfolio-card__visual::after,
.fl-service-card::after,
.fl-profile-side-card--accent::after { content:none!important; display:none!important; }
.fl-client-budget article:first-child > i { display:none!important; }
.fl-review-card,
.fl-portfolio-card,
.fl-completed-list,
.fl-service-card,
.fl-client-budget article,
.fl-client-projects > article,
.fl-profile-side-card,
.fl-profile-completion,
.fl-profile-placeholder { border-radius:17px; }

.fl-profile-account-nav {
    grid-area:nav;
    display:grid;
    min-width:0;
    padding:12px;
    gap:4px;
    border:1px solid var(--fl-line);
    border-radius:18px;
    background:rgba(255,255,255,.9);
    box-shadow:0 16px 42px rgba(38,34,82,.05);
    backdrop-filter:blur(16px);
}
.fl-profile-account-nav > span {
    padding:6px 9px 10px;
    color:#747987;
    font-size:11px;
    font-weight:620;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.fl-profile-account-nav a {
    display:grid;
    min-width:0;
    min-height:58px;
    padding:8px 9px;
    grid-template-columns:36px minmax(0,1fr) 15px;
    align-items:center;
    gap:10px;
    border-radius:12px;
    color:var(--fl-ink);
    text-decoration:none;
    transition:background .2s ease,color .2s ease,transform .2s ease;
}
.fl-profile-account-nav a:hover { background:#f2f1fb; color:var(--fl-primary-deep); transform:translateX(2px); }
.fl-profile-account-nav a:focus-visible { outline:3px solid rgba(103,87,245,.24); outline-offset:2px; }
.fl-profile-account-nav a > i {
    display:grid;
    width:36px;
    height:36px;
    place-items:center;
    border:1px solid #e5e3f5;
    border-radius:10px;
    background:#f7f6fd;
    color:#5a4be2;
    font-style:normal;
    font-size:14px;
}
.fl-profile-account-nav a > span { min-width:0; }
.fl-profile-account-nav strong,
.fl-profile-account-nav small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.fl-profile-account-nav strong { font-size:13px; font-weight:620; line-height:1.3; }
.fl-profile-account-nav small { margin-top:3px; color:#8a8f9b; font-size:10px; line-height:1.3; }
.fl-profile-account-nav a > b { color:#9a96ad; font-size:20px; font-weight:400; }

.fl-profile-compact-info {
    min-width:0;
    overflow:hidden;
    border:1px solid var(--fl-line);
    border-radius:18px;
    background:rgba(255,255,255,.9);
    box-shadow:0 15px 42px rgba(38,34,82,.045);
    backdrop-filter:blur(14px);
}
.fl-profile-compact-info > header {
    display:flex;
    padding:19px 19px 15px;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    border-bottom:1px solid #ececf2;
}
.fl-profile-compact-info > header span { color:#777c89; font-size:10px; font-weight:620; letter-spacing:.08em; text-transform:uppercase; }
.fl-profile-compact-info > header h2 { margin:5px 0 0; font-size:17px; font-weight:620; line-height:1.3; letter-spacing:-.025em; }
.fl-profile-compact-info > header button {
    min-height:38px;
    padding:0 9px;
    border:0;
    border-radius:9px;
    background:#f1efff;
    color:#5546df;
    font:590 11px/1 Manrope,sans-serif;
    cursor:pointer;
}
.fl-profile-compact-info > header button:hover { background:#e8e5ff; }
.fl-profile-compact-info > header button:focus-visible { outline:3px solid rgba(103,87,245,.24); outline-offset:2px; }
.fl-profile-compact-info__rows { display:grid; padding:4px 19px 7px; }
.fl-profile-compact-info__rows > article {
    display:grid;
    min-width:0;
    padding:14px 0;
    grid-template-columns:42px minmax(0,1fr);
    align-items:center;
    gap:12px;
    border-bottom:1px solid #eeeeF3;
}
.fl-profile-compact-info__rows > article:last-of-type { border-bottom:0; }
.fl-profile-compact-info__rows > article > i,
.fl-profile-compact-info__logo {
    position:relative;
    display:grid;
    width:42px;
    height:42px;
    place-items:center;
    overflow:hidden;
    border:1px solid #e5e3f5;
    border-radius:12px;
    background:#f5f4fc;
    color:#5a4be2;
    font-style:normal;
    font-size:16px;
}
.fl-profile-compact-info__logo img { width:100%; height:100%; object-fit:contain; }
.fl-profile-compact-info__rows article > div { min-width:0; align-self:center; }
.fl-profile-compact-info__rows > article.is-about,
.fl-profile-compact-info__rows > article.is-skills { align-items:start; }
.fl-profile-compact-info__rows > article.is-about > div,
.fl-profile-compact-info__rows > article.is-skills > div { align-self:start; }
.fl-profile-info-icon::before,
.fl-profile-info-icon::after { content:""; position:absolute; box-sizing:border-box; }
.fl-profile-info-icon.is-region { background:#f2efff; color:#5a4be2; }
.fl-profile-info-icon.is-region::before { width:17px; height:17px; top:9px; border:2px solid currentColor; border-radius:50% 50% 50% 0; transform:rotate(-45deg); }
.fl-profile-info-icon.is-region::after { width:5px; height:5px; top:15px; border-radius:50%; background:currentColor; }
.fl-profile-info-icon.is-company { background:#fff2e8; color:#a75a26; }
.fl-profile-info-icon.is-company::before { width:21px; height:22px; top:10px; border:2px solid currentColor; border-radius:4px 4px 2px 2px; }
.fl-profile-info-icon.is-company::after { width:4px; height:4px; top:15px; left:13px; border-radius:1px; background:currentColor; box-shadow:8px 0 currentColor,0 7px currentColor,8px 7px currentColor; }
.fl-profile-info-icon.is-website { background:#eaf6ff; color:#2675a7; }
.fl-profile-info-icon.is-website::before { width:22px; height:22px; top:9px; border:2px solid currentColor; border-radius:50%; }
.fl-profile-info-icon.is-website::after { width:18px; top:20px; border-top:2px solid currentColor; box-shadow:0 -5px 0 -1px currentColor,0 5px 0 -1px currentColor; }
.fl-profile-info-icon.is-headline { background:#eaf8ed; color:#33784a; }
.fl-profile-info-icon.is-headline::before { width:23px; height:17px; top:15px; border:2px solid currentColor; border-radius:4px; }
.fl-profile-info-icon.is-headline::after { width:10px; height:5px; top:11px; border:2px solid currentColor; border-bottom:0; border-radius:3px 3px 0 0; }
.fl-profile-info-icon.is-about { background:#fff5dc; color:#936717; }
.fl-profile-info-icon.is-about::before { width:20px; height:24px; top:9px; border:2px solid currentColor; border-radius:4px; }
.fl-profile-info-icon.is-about::after { width:11px; height:2px; top:16px; border-radius:2px; background:currentColor; box-shadow:0 5px currentColor,0 10px currentColor; }
.fl-profile-info-icon.is-skills { background:#f0efff; color:#5a4be2; }
.fl-profile-info-icon.is-skills::before { width:5px; height:5px; top:14px; left:14px; border-radius:2px; background:currentColor; box-shadow:9px 0 currentColor,0 9px currentColor,9px 9px currentColor; }
.fl-profile-info-icon.is-skills::after { inset:9px; border:1px solid rgba(90,75,226,.32); border-radius:7px; }
.fl-profile-compact-info__rows article > div > span { display:block; margin-bottom:4px; color:#858a96; font-size:10px; font-weight:600; letter-spacing:.055em; text-transform:uppercase; }
.fl-profile-compact-info__rows strong { display:block; overflow-wrap:anywhere; font-size:13px; font-weight:590; line-height:1.45; }
.fl-profile-compact-info__rows [data-profile-company-website] { display:inline-block; max-width:100%; overflow:hidden; color:#5748dc; font-size:13px; font-weight:570; line-height:1.45; text-decoration:none; text-overflow:ellipsis; white-space:nowrap; }
.fl-profile-compact-info__rows [data-profile-company-website]:hover { text-decoration:underline; text-underline-offset:3px; }
.fl-profile-compact-info__rows p { margin:0; color:#555b68; font-size:12px; line-height:1.65; white-space:pre-line; overflow-wrap:anywhere; }
.fl-profile-compact-info__rows [data-profile-skills] { display:flex; gap:5px; flex-wrap:wrap; }
.fl-profile-compact-info__rows [data-profile-skills] em {
    display:inline-flex;
    min-height:27px;
    padding:0 8px;
    align-items:center;
    border-radius:8px;
    background:#f1efff;
    color:#5143de;
    font-style:normal;
    font-size:10px;
    font-weight:540;
}
.fl-profile-compact-info .fl-profile-info-empty {
    min-height:126px;
    margin:13px 0;
    padding:18px;
    border-radius:13px;
}
.fl-profile-compact-info .fl-profile-info-empty i { margin-bottom:9px; }
.fl-profile-compact-info .fl-profile-info-empty span { font-size:11px; }
.fl-profile-contact-form { margin:0; }
.fl-profile-contact-form .fl-button { width:100%; }
.fl-profile-identity__actions { display:flex; align-items:center; justify-content:flex-end; gap:9px; flex-wrap:wrap; }
.fl-profile-identity__actions .fl-button { min-height:46px; }
.fl-profile-identity__actions .is-contact-saved { border-color:#dceacd; background:#edf8e3; color:#315f19; }
.fl-profile-identity__actions .fl-button--chat { border-color:#6757f5; background:#6757f5; color:#fff; }
.fl-contact-confirm-dialog > div > span { background:#eef8e3; color:#477824; }
.fl-contact-confirm-dialog [data-profile-contact-apply] { border-color:#6757f5; background:#6757f5; color:#fff; }
.fl-contact-confirm-dialog button[aria-busy="true"] { opacity:.65; cursor:wait; }

.fl-profile-network-card {
    min-width:0;
    overflow:hidden;
    border:1px solid var(--fl-line);
    border-radius:18px;
    background:rgba(255,255,255,.9);
    box-shadow:0 15px 42px rgba(38,34,82,.045);
    backdrop-filter:blur(14px);
}
.fl-profile-network-card > header { display:flex; padding:18px 19px 15px; align-items:flex-start; justify-content:space-between; gap:10px; border-bottom:1px solid #ececf2; }
.fl-profile-network-card > header span,
.fl-profile-network-card > header h2 { display:block; }
.fl-profile-network-card > header span { color:var(--fl-primary-deep); font-size:10px; font-weight:620; letter-spacing:.08em; text-transform:uppercase; }
.fl-profile-network-card > header h2 { margin:5px 0 0; font-size:16px; font-weight:620; line-height:1.35; letter-spacing:-.02em; }
.fl-profile-network-card > header a { display:inline-flex; flex:0 0 auto; align-items:center; gap:5px; color:var(--fl-primary-deep); font-size:10px; font-weight:580; text-decoration:none; }
.fl-profile-network-card > header a b { font-size:13px; font-weight:500; }
.fl-profile-network-card__stats { display:grid; padding:14px 14px 0; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; }
.fl-profile-network-card__stats > div { min-width:0; padding:13px; border:1px solid #e7e7ed; border-radius:13px; background:#fafafd; }
.fl-profile-network-card__stats strong,
.fl-profile-network-card__stats span { display:block; }
.fl-profile-network-card__stats strong { font-size:23px; font-weight:640; line-height:1; letter-spacing:-.04em; font-variant-numeric:tabular-nums; }
.fl-profile-network-card__stats span { margin-top:6px; color:#858a97; font-size:9px; }
.fl-profile-network-card__people { padding:16px 14px 14px; }
.fl-profile-network-card__people > div { display:flex; margin-bottom:9px; align-items:center; justify-content:space-between; gap:10px; }
.fl-profile-network-card__people > div > span { color:#777d8a; font-size:10px; font-weight:580; }
.fl-profile-network-card__people > div > b { display:grid; min-width:24px; height:24px; padding:0 6px; place-items:center; border-radius:8px; background:#eeecff; color:#5749dd; font-size:10px; }
.fl-profile-network-card__people ul { display:grid; margin:0; padding:0; gap:2px; list-style:none; }
.fl-profile-network-card__people li a { display:grid; min-width:0; min-height:47px; padding:5px 6px; grid-template-columns:36px minmax(0,1fr) 12px; align-items:center; gap:9px; border-radius:11px; color:var(--fl-ink); text-decoration:none; transition:background .18s ease; }
.fl-profile-network-card__people li a:hover { background:#f4f3fb; }
.fl-profile-network-card__people li img,
.fl-profile-network-card__people li i { display:grid; width:36px; height:36px; place-items:center; overflow:hidden; border-radius:50%; background:#eeecff; color:#5749dd; object-fit:cover; font-style:normal; font-size:9px; font-weight:650; }
.fl-profile-network-card__people li .fl-presence-avatar { width:36px; height:36px; overflow:visible; }
.fl-profile-network-card__people li span { min-width:0; overflow:hidden; font-size:11px; font-weight:570; text-overflow:ellipsis; white-space:nowrap; }
.fl-profile-network-card__people li b { color:#9995aa; font-size:16px; font-weight:400; }
.fl-profile-network-card__people > p { margin:4px 4px 2px; color:var(--fl-muted); font-size:10px; line-height:1.55; }

html[data-theme="dark"] .fl-profile-network-card { border-color:var(--fl-line); background:#191c24; color:var(--fl-ink); box-shadow:0 16px 48px rgba(0,0,0,.16); }
html[data-theme="dark"] .fl-profile-network-card > header { border-color:#303540; }
html[data-theme="dark"] .fl-profile-network-card__stats > div { border-color:#303540; background:#15181f; }
html[data-theme="dark"] .fl-profile-network-card__stats span,
html[data-theme="dark"] .fl-profile-network-card__people > div > span { color:#969daa; }
html[data-theme="dark"] .fl-profile-network-card__people > div > b,
html[data-theme="dark"] .fl-profile-network-card__people li img,
html[data-theme="dark"] .fl-profile-network-card__people li i { background:#302c4b; color:#c9c2ff; }
html[data-theme="dark"] .fl-profile-network-card__people li a:hover { background:#252936; }
html[data-theme="dark"] .fl-profile-identity__actions .is-contact-saved { border-color:#345540; background:#192e25; color:#79d7a8; }

@media (max-width:1040px) {
    .fl-profile-workspace,
    .fl-profile-workspace.is-manage {
        grid-template-columns:1fr;
        grid-template-areas:"nav" "main" "sidebar";
        grid-template-rows:auto;
        gap:18px;
    }
    .fl-profile-workspace.is-public { grid-template-areas:"main" "sidebar"; }
    .fl-profile-workspace .fl-profile-sidebar { position:static; top:auto; grid-template-columns:repeat(2,minmax(0,1fr)); }
    .fl-profile-workspace .fl-profile-compact-info { grid-column:1 / -1; }
    .fl-profile-workspace .fl-profile-network-card { grid-column:1 / -1; }
    .fl-profile-account-nav { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .fl-profile-account-nav > span { grid-column:1 / -1; }
    .fl-profile-main > .fl-profile-metrics { margin-bottom:44px; }
}
@media (max-width:700px) {
    .fl-profile-account-nav { grid-template-columns:1fr; }
    .fl-profile-account-nav > span { grid-column:auto; }
    .fl-profile-account-nav a { min-height:54px; }
    .fl-profile-workspace .fl-profile-sidebar { grid-template-columns:1fr; }
    .fl-profile-workspace .fl-profile-compact-info { grid-column:auto; }
    .fl-profile-workspace .fl-profile-network-card { grid-column:auto; }
    .fl-profile-main > .fl-profile-metrics {
        display:flex;
        margin:0 0 40px;
        padding:1px 1px 10px;
        gap:9px;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        scrollbar-width:thin;
    }
    .fl-profile-main > .fl-profile-metrics > article {
        min-width:min(74vw,190px);
        min-height:108px;
        padding:16px;
        grid-template-columns:48px minmax(0,1fr);
        grid-template-rows:1fr auto;
        justify-items:stretch;
        text-align:left;
        scroll-snap-align:start;
    }
    .fl-profile-main > .fl-profile-metrics article > i { grid-row:1 / 3; width:48px; height:48px; border-radius:15px; }
    .fl-profile-main > .fl-profile-metrics strong { font-size:25px; }
    .fl-profile-identity__actions { width:100%; justify-content:stretch; }
    .fl-profile-identity__actions > *,
    .fl-profile-identity__actions .fl-button { flex:1 1 100%; width:100%; }
    .fl-profile-contact-form { width:100%; }
}

/* zzz-feed.css */
/* Profile feed: content-first, compact and intentionally free of decorative corner circles. */
.fl-profile-feed { margin-bottom:56px; }
.fl-feed-heading { margin-bottom:12px; align-items:center; }
.fl-feed-heading > div > p,
.fl-profile-investments .fl-profile-section__head p { max-width:620px; margin:9px 0 0; color:#777d8b; font-size:13px; line-height:1.55; }
.fl-profile-feed .sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

.fl-feed-composer {
    display:grid;
    margin-bottom:10px;
    padding:14px 15px;
    grid-template-columns:42px minmax(0,1fr);
    align-items:start;
    gap:11px;
    border:1px solid #deddea;
    border-radius:14px;
    background:rgba(255,255,255,.94);
    box-shadow:0 16px 42px rgba(35,31,80,.045);
}
.fl-feed-composer:focus-within,
.fl-feed-comments > form:focus-within { border-color:#aaa1ef; box-shadow:0 0 0 3px rgba(103,87,245,.11); }
.fl-feed-avatar,
.fl-feed-author {
    display:grid;
    width:42px;
    height:42px;
    flex:0 0 auto;
    place-items:center;
    overflow:hidden;
    border:1px solid #e1dfef;
    border-radius:11px;
    background:#eeecff;
    color:#5143de;
    font-size:12px;
    font-weight:650;
    text-decoration:none;
}
.fl-feed-avatar img,
.fl-feed-author img { width:100%; height:100%; object-fit:cover; }
.fl-feed-composer__body { min-width:0; }
.fl-feed-input-shell { position:relative; min-width:0; }
.fl-feed-composer label { display:block; }
.fl-feed-composer textarea,
.fl-feed-comments textarea {
    display:block;
    width:100%;
    min-height:56px;
    padding:2px 44px 10px 2px;
    resize:none;
    overflow-y:hidden;
    border:0;
    outline:0;
    background:transparent;
    color:var(--fl-ink);
    font:430 16px/1.55 Manrope,sans-serif;
}
.fl-feed-composer textarea:focus-visible,
.fl-feed-comments textarea:focus-visible { outline:2px solid transparent; }
.fl-feed-composer textarea::placeholder,
.fl-feed-comments textarea::placeholder { color:#9b9fab; }
.fl-feed-composer__body > footer {
    display:flex;
    margin-top:8px;
    padding-top:9px;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    border-top:1px solid #ececf2;
}
.fl-feed-tools,
.fl-feed-publish,
.fl-feed-comment-tools { display:flex; align-items:center; gap:7px; }
.fl-feed-attach-link {
    display:inline-flex;
    min-height:28px;
    padding:3px 0;
    align-items:center;
    justify-content:flex-start;
    gap:7px;
    border:0;
    background:transparent;
    color:#5a4be2;
    font:580 12px/1.4 Manrope,sans-serif;
    cursor:pointer;
    transition:color .18s ease,opacity .18s ease;
}
.fl-feed-composer .fl-feed-attach-link,
.fl-feed-comments .fl-feed-attach-link { display:inline-flex; align-items:center; }
.fl-feed-attach-link:hover { color:#4032c8; }
.fl-feed-attach-link:focus-within,
.fl-feed-comment-tools button:focus-visible { outline:2px solid #6757f5; outline-offset:2px; }
.fl-feed-attach-link > span { flex:0 0 auto; }
.fl-feed-attach-link b { display:block; font:inherit; white-space:nowrap; }
.fl-feed-photo-icon {
    position:relative;
    display:inline-block;
    width:19px;
    height:16px;
    border:1.7px solid currentColor;
    border-radius:4px;
    box-sizing:border-box;
}
.fl-feed-photo-icon::before { content:""; position:absolute; top:2px; right:2px; width:4px; height:4px; border:1.4px solid currentColor; border-radius:50%; box-sizing:border-box; }
.fl-feed-photo-icon::after { content:""; position:absolute; right:2px; bottom:2px; left:2px; height:7px; background:currentColor; clip-path:polygon(0 100%,31% 34%,48% 65%,68% 22%,100% 100%); opacity:.82; }
.fl-feed-publish > span { color:#9296a2; font-size:10px; }
.fl-feed-publish > span b { color:#616674; font-weight:600; }
.fl-feed-publish > span b.is-over { color:#c83e55; }
.fl-feed-publish > button,
.fl-feed-comment-tools > button {
    display:inline-flex;
    min-height:38px;
    padding:0 16px;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:0;
    border-radius:10px;
    background:#6757f5;
    color:#fff;
    font:620 12px/1 Manrope,sans-serif;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(103,87,245,.18);
}
.fl-feed-publish > button:hover,
.fl-feed-comment-tools > button:hover { background:#5546df; }
.fl-feed-publish > button[aria-busy="true"],
.fl-feed-comment-tools > button[aria-busy="true"] { opacity:.65; cursor:wait; }
.fl-feed-publish i { font-style:normal; }

.fl-feed-emoji { position:relative; }
.fl-feed-emoji.is-corner { position:absolute; z-index:4; right:2px; bottom:5px; }
.fl-feed-emoji-corner {
    display:grid;
    width:38px;
    height:38px;
    padding:0;
    place-items:center;
    border:0;
    border-radius:11px;
    background:transparent;
    font:400 24px/1 "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
    cursor:pointer;
    opacity:.78;
    transition:background .18s ease,opacity .18s ease,transform .18s ease;
}
.fl-feed-emoji-corner:hover { background:#f1effc; opacity:1; transform:scale(1.05); }
.fl-feed-emoji-corner:focus-visible { outline:2px solid #6757f5; outline-offset:1px; opacity:1; }
.fl-feed-emoji.is-corner .fl-feed-emoji__panel { right:0; left:auto; }
.fl-feed-emoji__panel {
    position:absolute;
    z-index:30;
    left:0;
    bottom:calc(100% + 8px);
    display:grid;
    width:min(284px,calc(100vw - 42px));
    max-height:min(310px,calc(100dvh - 52px));
    padding:10px;
    grid-template-columns:repeat(5,1fr);
    gap:5px;
    overflow-x:hidden;
    overflow-y:auto;
    border:1px solid #dedbea;
    border-radius:14px;
    background:#fff;
    box-shadow:0 22px 55px rgba(28,26,64,.18);
    overscroll-behavior:contain;
    scrollbar-width:thin;
}
.fl-feed-emoji__panel[hidden] { display:none; }
.fl-feed-emoji__panel button {
    display:grid;
    width:42px;
    height:40px;
    padding:0;
    place-items:center;
    border:0;
    border-radius:9px;
    background:transparent;
    font:400 21px/1 "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
    cursor:pointer;
}
.fl-feed-emoji__panel button:hover { background:#f1effc; }

.fl-feed-draft-media {
    display:grid;
    margin:8px 0 3px;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:7px;
}
.fl-feed-draft-media[hidden] { display:none; }
.fl-feed-draft-media figure { position:relative; min-width:0; margin:0; overflow:hidden; border-radius:11px; background:#eeeef3; aspect-ratio:1; }
.fl-feed-draft-media img { width:100%; height:100%; object-fit:cover; }
.fl-feed-draft-media button { position:absolute; right:6px; top:6px; display:grid; width:28px; height:28px; padding:0; place-items:center; border:1px solid rgba(255,255,255,.7); border-radius:9px; background:rgba(18,19,28,.8); color:#fff; font-size:17px; cursor:pointer; }

.fl-feed-draft-og {
    display:flex;
    min-height:64px;
    margin:9px 0 3px;
    padding:9px;
    align-items:center;
    gap:10px;
    overflow:hidden;
    border:1px solid #e3e1ed;
    border-radius:12px;
    background:#f8f8fb;
    color:#7d8190;
    font-size:11px;
}
.fl-feed-draft-og[hidden] { display:none; }
.fl-feed-draft-og > img { width:70px; height:52px; flex:0 0 auto; border-radius:8px; object-fit:cover; }
.fl-feed-draft-og > span { display:block; min-width:0; }
.fl-feed-draft-og small,
.fl-feed-draft-og strong,
.fl-feed-draft-og em { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.fl-feed-draft-og small { color:#8c909d; font-size:9px; text-transform:uppercase; letter-spacing:.05em; }
.fl-feed-draft-og strong { margin-top:3px; color:#282a35; font-size:12px; font-weight:620; }
.fl-feed-draft-og em { margin-top:3px; color:#747987; font-size:10px; font-style:normal; }

.fl-feed-list {
    overflow:visible;
    border:1px solid #deddea;
    border-radius:14px;
    background:rgba(255,255,255,.95);
    box-shadow:0 16px 42px rgba(35,31,80,.04);
}
.fl-feed-list:empty { display:none; }
.fl-feed-post { padding:15px 16px; border-bottom:1px solid #e9e8ef; }
.fl-feed-post:last-child { border-bottom:0; }
.fl-feed-post__head { display:grid; grid-template-columns:42px minmax(0,1fr) auto; align-items:center; gap:10px; }
.fl-feed-post__head > div { min-width:0; }
.fl-feed-post__head > div > a { display:block; overflow:hidden; color:var(--fl-ink); font-size:13px; font-weight:650; text-decoration:none; text-overflow:ellipsis; white-space:nowrap; }
.fl-feed-post__head > div > p { display:flex; min-width:0; margin:3px 0 0; align-items:center; gap:6px; overflow:hidden; color:#8b909d; font-size:10px; }
.fl-feed-post__head > div > p span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.fl-feed-post__head > div > p i { font-style:normal; }
.fl-feed-post__role { padding:6px 8px; border:1px solid #e6e3f4; border-radius:8px; background:#f5f3ff; color:#5b4be0; font-size:9px; font-weight:620; letter-spacing:.045em; text-transform:uppercase; }
.fl-feed-post__text { margin:10px 0 0 52px; color:#343743; font-size:13px; line-height:1.62; overflow-wrap:anywhere; white-space:normal; }
.fl-feed-post__text a { color:#5748dc; text-decoration:none; border-bottom:1px solid #cdc8f2; }
.fl-feed-post__text a:hover { border-color:#5748dc; }
.fl-feed-inline-emoji {
    display:inline-block;
    margin-inline:.025em;
    font:400 1.4em/1 "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif;
    vertical-align:-.14em;
}

.fl-feed-media { display:grid; margin:11px 0 0 52px; grid-template-columns:repeat(2,minmax(0,1fr)); gap:4px; overflow:hidden; border-radius:11px; background:#efeff4; }
.fl-feed-media[data-count="1"] { grid-template-columns:1fr; }
.fl-feed-media button { display:block; min-width:0; height:100%; min-height:190px; padding:0; overflow:hidden; border:0; background:#e9e9ef; cursor:zoom-in; }
.fl-feed-media[data-count="1"] button { max-height:460px; aspect-ratio:16/9; }
.fl-feed-media[data-count="2"] button { aspect-ratio:4/3; }
.fl-feed-media[data-count="3"] button:first-child { grid-row:span 2; }
.fl-feed-media[data-count="3"] button,
.fl-feed-media[data-count="4"] button { aspect-ratio:1.2; }
.fl-feed-media img { width:100%; height:100%; object-fit:cover; transition:transform .25s ease; }
.fl-feed-media button:hover img { transform:scale(1.025); }

.fl-feed-og {
    display:grid;
    min-height:102px;
    margin:11px 0 0 52px;
    grid-template-columns:126px minmax(0,1fr);
    overflow:hidden;
    border:1px solid #dfdee7;
    border-radius:11px;
    background:#fafafa;
    color:inherit;
    text-decoration:none;
    transition:border-color .18s ease,box-shadow .18s ease;
}
.fl-feed-og:hover { border-color:#c7c2ea; box-shadow:0 12px 30px rgba(40,35,91,.07); }
.fl-feed-og__image { min-height:96px; overflow:hidden; background:#ececf1; }
.fl-feed-og__image img { width:100%; height:100%; object-fit:cover; }
.fl-feed-og__copy { display:flex; min-width:0; padding:11px 13px; justify-content:center; flex-direction:column; }
.fl-feed-og small { color:#888d99; font-size:9px; font-weight:610; letter-spacing:.055em; text-transform:uppercase; }
.fl-feed-og strong { display:-webkit-box; margin-top:5px; overflow:hidden; color:#242631; font-size:13px; font-weight:640; line-height:1.4; -webkit-box-orient:vertical; -webkit-line-clamp:2; }
.fl-feed-og em { display:-webkit-box; margin-top:5px; overflow:hidden; color:#737885; font-size:10px; font-style:normal; line-height:1.45; -webkit-box-orient:vertical; -webkit-line-clamp:2; }

.fl-feed-post__actions { display:flex; margin:10px 0 0 52px; align-items:center; justify-content:space-between; gap:10px; }
.fl-feed-post__actions > button {
    display:inline-flex;
    min-height:34px;
    padding:0 8px;
    align-items:center;
    gap:6px;
    border:0;
    border-radius:10px;
    background:transparent;
    color:#777c89;
    font:540 11px/1 Manrope,sans-serif;
    cursor:pointer;
}
.fl-feed-post__actions > button:hover,
.fl-feed-post__actions > button[aria-expanded="true"] { background:#f1effb; color:#5143de; }
.fl-feed-post__actions > button span { font-size:16px; }
.fl-feed-post__actions > button b { font-weight:650; }
.fl-feed-post__actions > button i { font-style:normal; }
.fl-feed-comment-icon { position:relative; display:inline-block; width:17px; height:14px; border:1.5px solid currentColor; border-radius:5px; box-sizing:border-box; }
.fl-feed-comment-icon::after { content:""; position:absolute; left:2px; bottom:-4px; width:5px; height:5px; border-left:1.5px solid currentColor; border-bottom:1.5px solid currentColor; background:inherit; transform:skewY(-34deg); }
.fl-feed-reactions { position:relative; min-width:0; }
.fl-feed-reaction-summary { display:flex; min-width:0; align-items:center; justify-content:flex-end; gap:4px; }
.fl-feed-reaction-summary > button {
    display:inline-flex;
    min-width:34px;
    min-height:32px;
    padding:0 7px;
    align-items:center;
    justify-content:center;
    gap:4px;
    border:1px solid #e6e3ed;
    border-radius:9px;
    background:#faf9fc;
    color:#858995;
    cursor:pointer;
}
.fl-feed-reaction-summary > button[hidden] { display:none; }
.fl-feed-reaction-summary > button:hover { border-color:#d7d2ed; background:#f3f1fb; }
.fl-feed-reaction-summary > button[aria-pressed="true"] { border-color:#d8d1fb; background:#eeebff; color:#5143de; }
.fl-feed-reaction-summary > button:disabled,
.fl-feed-reaction-picker button:disabled { opacity:.58; cursor:wait; }
.fl-feed-reaction-summary > button span { font:400 15px/1 "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif; }
.fl-feed-reaction-summary > button b { min-width:7px; font:600 9px/1 Manrope,sans-serif; }
.fl-feed-reaction-summary > .fl-feed-reaction-toggle { position:relative; width:34px; padding:0; border-color:transparent; background:transparent; }
.fl-feed-reaction-toggle > span { font-family:"Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif!important; font-size:20px!important; line-height:1; }
.fl-feed-reaction-toggle > i { position:absolute; right:3px; bottom:3px; display:grid; width:11px; height:11px; place-items:center; border-radius:4px; background:#6757f5; color:#fff; font-size:8px; font-style:normal; line-height:1; }
.fl-feed-reaction-picker {
    position:absolute;
    z-index:40;
    right:0;
    bottom:calc(100% + 8px);
    display:flex;
    width:max-content;
    max-width:min(390px,calc(100vw - 40px));
    padding:7px;
    align-items:stretch;
    gap:3px;
    overflow-x:auto;
    overflow-y:hidden;
    border:1px solid #ddd9eb;
    border-radius:13px;
    background:#fff;
    box-shadow:0 18px 48px rgba(31,27,67,.2);
    overscroll-behavior:contain;
    scrollbar-width:thin;
}
.fl-feed-reaction-picker[hidden] { display:none; }
.fl-feed-reaction-picker button { display:grid; min-width:52px; min-height:50px; padding:5px 7px; place-items:center; gap:3px; border:0; border-radius:9px; background:transparent; color:#5c606d; cursor:pointer; }
.fl-feed-reaction-picker button:hover,
.fl-feed-reaction-picker button[aria-pressed="true"] { background:#f0edff; color:#5143de; transform:translateY(-1px); }
.fl-feed-reaction-picker button span { font:400 23px/1 "Segoe UI Emoji","Apple Color Emoji","Noto Color Emoji",sans-serif; }
.fl-feed-reaction-picker button small { max-width:58px; overflow:hidden; font:550 8px/1.1 Manrope,sans-serif; text-overflow:ellipsis; white-space:nowrap; }
.fl-feed-reactions.is-compact .fl-feed-reaction-summary { justify-content:flex-end; }
.fl-feed-reactions.is-compact .fl-feed-reaction-summary > button { min-width:30px; min-height:28px; padding-inline:5px; }
.fl-feed-reactions.is-compact .fl-feed-reaction-summary > button span { font-size:13px; }
.fl-feed-reactions.is-compact .fl-feed-reaction-picker { right:0; left:auto; }

.fl-feed-comments { margin:11px -16px -15px; padding:12px 16px 14px 68px; border-top:1px solid #e9e8ef; background:#fafafd; }
.fl-feed-post:last-child .fl-feed-comments { border-radius:0 0 13px 13px; }
.fl-feed-comments[hidden] { display:none; }
.fl-feed-comments > form { margin:12px 0 0; padding:9px 10px; border:1px solid #e0dfeb; border-radius:11px; background:#fff; }
.fl-feed-comments textarea { min-height:46px; padding:1px 0 6px; font-size:16px; line-height:1.55; }
.fl-feed-comment-tools { justify-content:space-between; padding-top:7px; border-top:1px solid #efeff3; }
.fl-feed-comment-tools > button { min-height:32px; padding-inline:12px; box-shadow:none; }
.fl-feed-comment-list { display:grid; gap:3px; }
.fl-feed-comment { display:grid; padding:10px 0; grid-template-columns:34px minmax(0,1fr); align-items:start; gap:9px; border-bottom:1px solid #ececf2; }
.fl-feed-comment:last-child { border-bottom:0; }
.fl-feed-comment > .fl-feed-author { width:34px; height:34px; border-radius:9px; font-size:10px; }
.fl-feed-comment__body { min-width:0; }
.fl-feed-comment__body > header { display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
.fl-feed-comment__body > header a { overflow:hidden; color:#2d303a; font-size:11px; font-weight:640; text-decoration:none; text-overflow:ellipsis; white-space:nowrap; }
.fl-feed-comment__body > header > span { display:flex; flex:0 0 auto; align-items:center; gap:4px; }
.fl-feed-comment__body > header time { flex:0 0 auto; color:#9498a4; font-size:9px; }
.fl-feed-comment .fl-feed-post__text { margin:6px 0 0; font-size:12px; line-height:1.6; }
.fl-feed-comment .fl-feed-media,
.fl-feed-comment .fl-feed-og { margin-left:0; }
.fl-feed-comments .fl-feed-draft-media { width:min(260px,100%); grid-template-columns:repeat(2,minmax(0,1fr)); }
.fl-feed-comment .fl-feed-media { display:grid; width:min(320px,100%); margin-top:8px; grid-template-columns:repeat(2,minmax(0,1fr)); gap:4px; border-radius:10px; background:transparent; }
.fl-feed-comment .fl-feed-media[data-count="1"] { width:min(240px,100%); grid-template-columns:1fr; }
.fl-feed-comment .fl-feed-media button,
.fl-feed-comment .fl-feed-media[data-count] button { width:100%; min-height:0; max-height:150px; border-radius:9px; aspect-ratio:1; }
.fl-feed-comment .fl-feed-media[data-count="1"] button { max-height:160px; aspect-ratio:4/3; }
.fl-feed-comment .fl-feed-media img { display:block; width:100%; height:100%; max-height:160px; object-fit:cover; }
.fl-feed-comment__body > footer { margin-top:5px; }
.fl-feed-post__meta-actions { display:flex; align-items:center; gap:5px; }
.fl-feed-edit-button,
.fl-feed-delete-button { display:grid; width:30px; height:30px; flex:0 0 auto; padding:0; place-items:center; border:0; border-radius:8px; background:transparent; color:#a0a3ad; cursor:pointer; }
.fl-feed-edit-button:hover { background:#f0edff; color:#5949df; }
.fl-feed-delete-button:hover { background:#fff0f0; color:#a94444; }
.fl-feed-edit-button:focus-visible,
.fl-feed-delete-button:focus-visible { outline:2px solid #6757f5; outline-offset:2px; }
.fl-feed-edit-icon { position:relative; display:block; width:14px; height:4px; border:1.5px solid currentColor; border-radius:2px; box-sizing:border-box; transform:rotate(-45deg); }
.fl-feed-edit-icon::before { content:""; position:absolute; top:-1.5px; left:-4px; width:3px; height:4px; border:1.5px solid currentColor; border-right:0; border-radius:2px 0 0 2px; box-sizing:border-box; }
.fl-feed-edit-icon::after { content:""; position:absolute; top:-1px; right:-4px; width:0; height:0; border-top:2px solid transparent; border-bottom:2px solid transparent; border-left:3px solid currentColor; }
.fl-feed-delete-icon { position:relative; display:block; width:12px; height:13px; border:1.5px solid currentColor; border-top:0; border-radius:0 0 3px 3px; box-sizing:border-box; }
.fl-feed-delete-icon::before { content:""; position:absolute; left:-3px; top:-4px; width:15px; border-top:1.5px solid currentColor; }
.fl-feed-delete-icon::after { content:""; position:absolute; left:3px; top:-7px; width:4px; height:3px; border:1.5px solid currentColor; border-bottom:0; border-radius:2px 2px 0 0; }
.fl-feed-comment .fl-feed-edit-button,
.fl-feed-comment .fl-feed-delete-button { width:24px; height:24px; border-radius:6px; }
.fl-feed-comment .fl-feed-edit-icon,
.fl-feed-comment .fl-feed-delete-icon { transform:scale(.82); }
.fl-feed-comment .fl-feed-edit-icon { transform:rotate(-45deg) scale(.82); }
.fl-feed-edited { flex:0 0 auto; color:#aaa6bd; font-size:9px; font-style:normal; }
.fl-feed-comment__body .fl-feed-edited { font-size:8px; }
.fl-feed-edit-dialog { width:min(570px,calc(100% - 28px)); }
.fl-feed-edit-dialog > form { padding:25px; text-align:left; }
.fl-feed-edit-dialog > form > header { display:grid; grid-template-columns:46px minmax(0,1fr); align-items:center; gap:13px; }
.fl-feed-edit-dialog > form > header > div { min-width:0; }
.fl-feed-edit-dialog > form > header h2 { font-size:21px; }
.fl-feed-edit-dialog > form > header p { margin:5px 0 0; font-size:12px; }
.fl-feed-edit-mark { display:grid; position:relative; width:46px; height:46px; place-items:center; border-radius:13px; background:#efedff; color:#5949df; }
.fl-feed-edit-mark i { position:relative; display:block; width:18px; height:5px; border:2px solid currentColor; border-radius:2px; box-sizing:border-box; transform:rotate(-45deg); }
.fl-feed-edit-mark i::after { content:""; position:absolute; top:-2px; right:-6px; border-top:2.5px solid transparent; border-bottom:2.5px solid transparent; border-left:4px solid currentColor; }
.fl-feed-edit-field { display:block; position:relative; margin-top:21px; }
.fl-feed-edit-field > span { display:block; margin-bottom:8px; color:#4d5060; font-size:12px; font-weight:600; }
.fl-feed-edit-field textarea { display:block; width:100%; min-height:132px; max-height:330px; padding:13px 14px 28px; resize:none; border:1px solid #dcd9e8; border-radius:12px; outline:0; background:#fbfaff; color:#292b36; font:500 16px/1.55 Manrope,sans-serif; box-sizing:border-box; transition:border-color .18s ease,box-shadow .18s ease; }
.fl-feed-edit-field textarea:focus { border-color:#9185e8; box-shadow:0 0 0 3px rgba(103,87,245,.1); }
.fl-feed-edit-field > small { position:absolute; right:11px; bottom:9px; color:#9a9daa; font:500 10px/1 Manrope,sans-serif; }
.fl-feed-edit-field > small b { font-weight:600; }
.fl-feed-edit-field > small i { font-style:normal; }
.fl-feed-edit-field > small b.is-over { color:#b33e4b; }
.fl-feed-edit-error { margin:9px 0 0!important; color:#a63e49!important; font-size:11px!important; }
.fl-feed-edit-dialog > form > footer { margin-top:20px; }
.fl-feed-edit-dialog [data-feed-edit-apply] { border-color:#6757f5; background:#6757f5; color:#fff; }
.fl-feed-edit-dialog [data-feed-edit-apply][aria-busy="true"] { opacity:.65; cursor:wait; }
.fl-feed-delete-dialog [data-feed-delete-apply] { border-color:#a94444; background:#a94444; color:#fff; }
.fl-feed-delete-dialog .fl-feed-delete-mark { position:relative; background:#fff0f0; }
.fl-feed-delete-dialog .fl-feed-delete-mark::before { content:""; width:14px; height:16px; border:2px solid #a94444; border-top:0; border-radius:0 0 4px 4px; }
.fl-feed-delete-dialog .fl-feed-delete-mark::after { content:""; position:absolute; top:15px; left:15px; width:20px; border-top:2px solid #a94444; }
.fl-feed-login { display:flex; min-height:44px; margin-top:12px; padding:0 13px; align-items:center; justify-content:space-between; border:1px solid #e1dff0; border-radius:11px; background:#fff; color:#5748dc; font-size:11px; text-decoration:none; }
.fl-feed-comments-more,
.fl-feed-more {
    display:flex;
    min-height:46px;
    margin:14px auto 0;
    padding:0 18px;
    align-items:center;
    justify-content:center;
    gap:9px;
    border:1px solid #dcd9eb;
    border-radius:12px;
    background:#fff;
    color:#5143de;
    font:610 12px/1 Manrope,sans-serif;
    cursor:pointer;
}
.fl-feed-comments-more { min-height:38px; margin-top:10px; font-size:10px; }
.fl-feed-more:hover,
.fl-feed-comments-more:hover { border-color:#c4beed; background:#f5f3ff; }
.fl-feed-more[hidden],
.fl-feed-comments-more[hidden] { display:none; }
.fl-feed-more:disabled,
.fl-feed-comments-more:disabled { opacity:.6; cursor:wait; }
.fl-feed-empty { padding:34px 22px; border:1px solid #dfdee9; border-radius:14px; background:#fff; text-align:center; }
.fl-feed-empty[hidden] { display:none; }
.fl-feed-empty > span { display:block; color:#6757f5; font-size:24px; }
.fl-feed-empty strong { display:block; margin-top:10px; font-size:15px; font-weight:640; }
.fl-feed-empty p { margin:7px auto 0; max-width:460px; color:#7d828e; font-size:12px; line-height:1.55; }

/* The value and the progress ring now share one positioning context. */
.fl-rating-orbit::before { content:none!important; display:none!important; }
.fl-rating-orbit > .fl-rating-orbit__dial {
    position:relative!important;
    inset:auto!important;
    top:auto!important;
    left:auto!important;
    width:124px;
    height:124px;
    flex:0 0 124px;
    transform:none!important;
}
.fl-rating-orbit__dial::before {
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:conic-gradient(var(--fl-accent) calc(var(--rating) / 5 * 1turn),rgba(255,255,255,.1) 0);
    -webkit-mask:radial-gradient(farthest-side,transparent calc(100% - 10px),#000 0);
    mask:radial-gradient(farthest-side,transparent calc(100% - 10px),#000 0);
}
.fl-rating-orbit__dial > .fl-rating-orbit__value {
    position:absolute!important;
    inset:0!important;
    top:0!important;
    left:0!important;
    display:grid;
    width:auto!important;
    height:auto!important;
    place-content:center;
    justify-items:center;
    transform:none!important;
    text-align:center;
}
.fl-rating-orbit__value strong,
.fl-rating-orbit__value span { margin:0; }
.fl-rating-orbit > p { margin-top:24px; }
.fl-profile-investments { margin-top:0; }

@media (max-width:800px) {
    .fl-feed-post { padding:15px; }
    .fl-feed-post__text,
    .fl-feed-media,
    .fl-feed-og,
    .fl-feed-post__actions { margin-left:0; }
    .fl-feed-comments { margin:11px -15px -15px; padding:12px 15px 14px; }
    .fl-rating-orbit > .fl-rating-orbit__dial { width:124px; height:124px; flex-basis:124px; }
}

@media (max-width:600px) {
    .fl-profile-feed { margin-bottom:52px; }
    .fl-feed-heading > div > p { font-size:12px; }
    .fl-feed-composer { padding:13px; grid-template-columns:40px minmax(0,1fr); gap:10px; border-radius:13px; }
    .fl-feed-avatar { width:40px; height:40px; border-radius:11px; }
    .fl-feed-composer textarea { min-height:66px; font-size:16px; }
    .fl-feed-composer__body > footer { align-items:flex-end; flex-wrap:wrap; }
    .fl-feed-attach-link { min-height:32px; font-size:12px; }
    .fl-feed-publish { width:100%; justify-content:space-between; gap:8px; }
    .fl-feed-publish > button { min-height:44px; padding-inline:13px; }
    .fl-feed-draft-media { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .fl-feed-list { border-radius:13px; }
    .fl-feed-post { padding:14px 13px; }
    .fl-feed-post__head { grid-template-columns:42px minmax(0,1fr) auto; gap:9px; }
    .fl-feed-post__head > .fl-feed-author { width:42px; height:42px; border-radius:11px; }
    .fl-feed-post__role { display:none; }
    .fl-feed-post__text { margin-top:13px; font-size:13px; line-height:1.65; }
    .fl-feed-media { margin-top:13px; border-radius:11px; }
    .fl-feed-media button { min-height:132px; }
    .fl-feed-media[data-count="1"] button { aspect-ratio:4/3; }
    .fl-feed-og { min-height:86px; margin-top:13px; grid-template-columns:94px minmax(0,1fr); border-radius:11px; }
    .fl-feed-og__image { min-height:96px; }
    .fl-feed-og__copy { padding:10px 11px; }
    .fl-feed-og em { display:none; }
    .fl-feed-post__actions { margin-top:10px; align-items:center; flex-direction:row; }
    .fl-feed-post__actions > button { min-height:34px; }
    .fl-feed-reactions { width:auto; overflow:visible; }
    .fl-feed-comments { margin:11px -13px -14px; padding:12px 13px 13px; }
    .fl-feed-comment { grid-template-columns:34px minmax(0,1fr); }
    .fl-feed-comment > .fl-feed-author { width:34px; height:34px; }
    .fl-feed-emoji__panel { position:fixed; z-index:22010; left:16px; right:16px; bottom:max(16px,env(safe-area-inset-bottom)); width:auto; grid-template-columns:repeat(5,1fr); }
    .fl-feed-emoji__panel button { width:100%; min-width:0; }
    .fl-feed-reaction-picker { position:fixed; z-index:22010; right:12px; bottom:max(16px,env(safe-area-inset-bottom)); left:12px!important; width:auto; max-width:none; justify-content:space-around; }
    .fl-feed-reaction-picker button { min-width:0; flex:1 1 20%; padding-inline:3px; }
}

@media (prefers-reduced-motion:reduce) {
    .fl-feed-attach-link,
    .fl-feed-emoji-corner,
    .fl-feed-media img { transition:none; }
}

[id^="feed-post-"],
[id^="feed-comment-"] { scroll-margin-top:110px; }
.fl-feed-post.is-notification-target,
.fl-feed-comment.is-notification-target { animation:fl-feed-notification-target 4s ease; }
@keyframes fl-feed-notification-target {
    0%,100% { box-shadow:inherit; }
    12%,68% { box-shadow:0 0 0 4px rgba(185,243,74,.7),0 18px 45px rgba(103,87,245,.2); }
}
@media (prefers-reduced-motion:reduce) { .fl-feed-post.is-notification-target,.fl-feed-comment.is-notification-target { animation:none; } }

/* zzzz-profile-tabs.css */
.fl-profile-main > .fl-profile-metrics { margin-bottom: 18px; }

.fl-profile-tabs {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 7px;
    gap: 4px;
    overflow-x: auto;
    border: 1px solid var(--fl-line);
    border-radius: 15px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 34px rgba(35,31,80,.045);
    scrollbar-width: none;
}
.fl-profile-tabs::-webkit-scrollbar { display: none; }
.fl-profile-tabs button {
    position: relative;
    display: inline-grid;
    min-width: max-content;
    min-height: 49px;
    padding: 0 13px;
    grid-template-columns: 24px auto auto;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #6d7280;
    font: 570 12px/1.2 Manrope, sans-serif;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.fl-profile-tabs button:hover { background: #f5f4fb; color: #353849; }
.fl-profile-tabs button[aria-selected="true"] {
    background: #202132;
    color: #fff;
    box-shadow: 0 8px 22px rgba(31,32,49,.16);
}
.fl-profile-tabs button:focus-visible { outline: 3px solid rgba(103,87,245,.25); outline-offset: 2px; }
.fl-profile-tabs button > b {
    display: inline-grid;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    place-items: center;
    border-radius: 7px;
    background: #ecebf4;
    color: #676b78;
    font-size: 10px;
    font-weight: 650;
}
.fl-profile-tabs button[aria-selected="true"] > b { background: rgba(255,255,255,.14); color: #d9ff82; }
.fl-profile-tabs button > i {
    position: relative;
    display: block;
    width: 23px;
    height: 23px;
    border: 1px solid #dddce7;
    border-radius: 7px;
    color: #6558df;
}
.fl-profile-tabs button[aria-selected="true"] > i { border-color: rgba(255,255,255,.28); color: #d9ff82; }
.fl-profile-tabs button > i::before,
.fl-profile-tabs button > i::after { content: ""; position: absolute; box-sizing: border-box; }
.fl-profile-tabs i.is-feed::before { left: 5px; top: 6px; width: 11px; height: 2px; border-radius: 2px; background: currentColor; box-shadow: 0 4px currentColor, 0 8px currentColor; }
.fl-profile-tabs i.is-portfolio::before { left: 4px; top: 6px; width: 13px; height: 11px; border: 1.7px solid currentColor; border-radius: 3px; }
.fl-profile-tabs i.is-portfolio::after { left: 8px; top: 3px; width: 6px; height: 4px; border: 1.7px solid currentColor; border-bottom: 0; border-radius: 2px 2px 0 0; }
.fl-profile-tabs i.is-services::before { left: 5px; top: 5px; width: 5px; height: 5px; border: 1.7px solid currentColor; box-shadow: 7px 0 0 -1px transparent, 7px 0 0 0 currentColor, 0 7px 0 -1px transparent, 0 7px 0 0 currentColor, 7px 7px 0 -1px transparent, 7px 7px 0 0 currentColor; }
.fl-profile-tabs i.is-reviews::before { left: 4px; top: 5px; width: 14px; height: 11px; border: 1.7px solid currentColor; border-radius: 4px; }
.fl-profile-tabs i.is-reviews::after { left: 7px; bottom: 3px; width: 5px; height: 5px; border-left: 1.7px solid currentColor; transform: skew(-28deg); }
.fl-profile-tabs i.is-orders::before { left: 4px; top: 6px; width: 14px; height: 11px; border: 1.7px solid currentColor; border-radius: 3px; }
.fl-profile-tabs i.is-orders::after { left: 8px; top: 3px; width: 6px; height: 5px; border: 1.7px solid currentColor; border-bottom: 0; border-radius: 2px 2px 0 0; }

.fl-profile-tab-panels { min-width: 0; }
.fl-profile-tab-panel { padding-top: 34px; animation: fl-profile-panel-in .28s ease both; }
.fl-profile-tab-panel[hidden] { display: none !important; }
.fl-profile-tab-panel > .fl-profile-section,
.fl-profile-tab-panel .fl-profile-section { margin-bottom: 0; }
.fl-profile-tab-panel[data-profile-panel="feed"] { padding-top: 26px; }
.fl-profile-tab-panel[data-profile-panel="feed"] > .fl-profile-feed { margin-bottom: 0; }
.fl-profile-tab-panel .fl-profile-section__head { align-items: center; }
.fl-profile-tab-panel .fl-profile-section__head h2 { font-size: clamp(27px, 3vw, 37px); }
.fl-profile-tab-panel .fl-profile-section__head p { max-width: 610px; margin: 9px 0 0; color: var(--fl-muted); font-size: 12px; line-height: 1.6; }
@keyframes fl-profile-panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.fl-profile-add-button {
    display: inline-flex;
    min-height: 43px;
    padding: 0 14px !important;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    border: 1px solid #dddbe9 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #373a49 !important;
    font: 600 12px/1 Manrope, sans-serif !important;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.fl-profile-add-button span { color: #5a4be2; font-size: 17px; font-weight: 400; }
.fl-profile-add-button:hover { transform: translateY(-2px); border-color: #bdb7ec !important; box-shadow: 0 10px 24px rgba(51,45,107,.08); }
.fl-profile-add-button:focus-visible { outline: 3px solid rgba(103,87,245,.23); outline-offset: 2px; }

.fl-showcase-image { width: 100%; padding: 0; border: 0; cursor: zoom-in; }
.fl-showcase-image:focus-visible { outline: 3px solid rgba(103,87,245,.28); outline-offset: 2px; }
.fl-portfolio-card,
.fl-service-card,
.fl-active-order { border-radius: 14px !important; }
.fl-portfolio-card { position: relative; }
.fl-portfolio-card__visual { border-radius: 13px 13px 0 0; }
.fl-portfolio-card__visual img { transition: transform .35s ease; }
.fl-portfolio-card:hover .fl-portfolio-card__visual img { transform: scale(1.025); }
.fl-portfolio-card__copy h3 a { color: inherit; text-decoration: none; }
.fl-portfolio-card__manage {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 12px;
    display: flex;
    padding: 4px;
    gap: 3px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 10px;
    background: rgba(24,25,38,.76);
    box-shadow: 0 8px 22px rgba(15,16,28,.18);
    backdrop-filter: blur(12px);
}
.fl-portfolio-card__manage button {
    display: inline-flex;
    min-height: 31px;
    padding: 0 9px;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #fff;
    font: 560 9px/1 Manrope,sans-serif;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.fl-portfolio-card__manage button:hover,
.fl-portfolio-card__manage button:focus-visible { background: rgba(255,255,255,.15); outline: none; }
.fl-portfolio-card__manage button.is-delete:hover,
.fl-portfolio-card__manage button.is-delete:focus-visible { background: #a9464d; }
.fl-portfolio-card__manage i { position: relative; display: block; width: 13px; height: 13px; flex: 0 0 auto; color: currentColor; }
.fl-portfolio-card__manage i.is-edit::before { content: ""; position: absolute; left: 2px; top: 6px; width: 9px; height: 3px; border: 1.5px solid currentColor; border-radius: 1px; transform: rotate(-45deg); }
.fl-portfolio-card__manage i.is-edit::after { content: ""; position: absolute; left: 1px; bottom: 1px; width: 4px; height: 4px; border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; }
.fl-portfolio-card__manage i.is-delete::before { content: ""; position: absolute; left: 3px; top: 4px; width: 7px; height: 8px; border: 1.5px solid currentColor; border-top: 0; border-radius: 0 0 2px 2px; }
.fl-portfolio-card__manage i.is-delete::after { content: ""; position: absolute; left: 2px; top: 1px; width: 9px; height: 2px; border-top: 1.5px solid currentColor; box-shadow: inset 0 1px currentColor; }

.fl-service-card__main {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: space-between;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}
.fl-service-card__manage { position: absolute; z-index: 4; top: 12px; right: 12px; display: flex; gap: 6px; }
.fl-service-card__manage button {
    min-height: 31px;
    padding: 0 10px;
    border: 1px solid rgba(211,210,222,.92);
    border-radius: 9px;
    background: rgba(255,255,255,.94);
    color: #4b4d59;
    font: 610 9px/1 Manrope,sans-serif;
    box-shadow: 0 5px 16px rgba(31,29,54,.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.fl-service-card__manage button:hover { transform: translateY(-1px); border-color: #aea8e8; background: #fff; }
.fl-service-card__manage button:focus-visible { outline: 3px solid rgba(103,87,245,.24); outline-offset: 2px; }
.fl-service-card__manage button.is-order { width: 31px; padding: 0; color: #6255d4; font-size: 13px; }
.fl-service-card__manage button:disabled { opacity: .38; pointer-events: none; }
.fl-service-card__manage button.is-delete { border-color: rgba(224,190,194,.95); color: #a43d47; }
.fl-service-card.is-manageable .fl-service-card__index { right: auto; left: 19px; }
.fl-service-card.is-manageable .fl-service-card__main > div { padding-top: 36px; }
.fl-service-sort-hint { display: block; margin-top: 8px; color: #777c89; font-size: 10px; }

.fl-active-orders { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.fl-active-order {
    display: flex;
    min-height: 270px;
    padding: 22px;
    flex-direction: column;
    border: 1px solid var(--fl-line);
    background: #fff;
    box-shadow: 0 14px 35px rgba(35,31,80,.035);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.fl-active-order:hover { transform: translateY(-3px); border-color: #d8d4f3; box-shadow: 0 18px 42px rgba(35,31,80,.07); }
.fl-active-order > header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fl-active-order > header > span { display: inline-flex; min-height: 27px; padding: 0 8px; align-items: center; gap: 6px; border-radius: 7px; background: #f0efff; color: #5546dd; font-size: 10px; font-weight: 620; }
.fl-active-order > header > span > i { width: 6px; height: 6px; border-radius: 2px; background: currentColor; }
.fl-active-order > header > span.is-open { background: #edf8df; color: #487520; }
.fl-active-order > header > span.is-discussion { background: #fff2df; color: #95601d; }
.fl-active-order > header > span.is-review { background: #e9f5ff; color: #2e6f9e; }
.fl-active-order > header time { color: #8c919d; font-size: 10px; }
.fl-active-order > small { margin-top: 24px; color: #6557df; font-size: 10px; font-weight: 620; letter-spacing: .06em; text-transform: uppercase; }
.fl-active-order > h3 { margin: 8px 0 7px; font-size: 18px; font-weight: 620; line-height: 1.35; letter-spacing: -.02em; }
.fl-active-order > h3 a { color: inherit; text-decoration: none; transition: color .2s ease; }
.fl-active-order > h3 a:hover { color: var(--fl-primary); }
.fl-active-order > p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--fl-muted); font-size: 12px; line-height: 1.65; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.fl-active-order > footer { display: flex; margin-top: auto; padding-top: 18px; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--fl-line); }
.fl-active-order > footer > a,
.fl-active-order__empty-person { display: flex; min-width: 0; align-items: center; gap: 9px; color: var(--fl-ink); text-decoration: none; }
.fl-active-order > footer img,
.fl-active-order > footer a > i,
.fl-active-order__empty-person > i { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; object-fit: cover; border-radius: 10px; background: #efedff; color: #5748df; font-style: normal; font-size: 10px; }
.fl-active-order > footer a > .fl-presence-avatar { width:36px; height:36px; overflow:visible; color:inherit; font-size:inherit; line-height:normal; }
.fl-active-order > footer a > .fl-presence-avatar > img,
.fl-active-order > footer a > .fl-presence-avatar > i { display:grid; width:36px; height:36px; flex:0 0 auto; place-items:center; object-fit:cover; overflow:hidden; border-radius:10px; background:#efedff; color:#5748df; font-style:normal; font-size:10px; }
.fl-active-order > footer a > span,
.fl-active-order__empty-person > span { display: grid; color: #8b8f9c; font-size: 9px; line-height: 1.4; }
.fl-active-order > footer a strong { overflow: hidden; color: var(--fl-ink); font-size: 11px; font-weight: 610; text-overflow: ellipsis; white-space: nowrap; }
.fl-active-order > footer > strong { flex: 0 0 auto; font-size: 14px; font-weight: 640; }

.fl-profile-results { margin-top: 55px; padding-top: 45px; border-top: 1px solid var(--fl-line); }
.fl-profile-subsection-head { display: flex; margin: 34px 0 16px; align-items: center; justify-content: space-between; gap: 16px; }
.fl-profile-subsection-head > span { font-size: 20px; font-weight: 620; letter-spacing: -.025em; }
.fl-profile-subsection-head > b { display: grid; min-width: 28px; height: 28px; padding: 0 8px; place-items: center; border-radius: 8px; background: #eeecfb; color: #5748df; font-size: 11px; }

.fl-profile-content-dialog { width: min(760px, calc(100% - 30px)); }
.fl-profile-content-dialog footer button[type="submit"] > b { font: inherit; }
.fl-profile-content-form-grid { padding-bottom: 30px; }
.fl-service-price-type { min-width: 0; margin: 0; padding: 0; border: 0; }
.fl-service-price-type > legend { margin-bottom: 8px; color: #515461; font-size: 10px; font-weight: 600; }
.fl-service-price-type > div { display: grid; padding: 5px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 5px; border: 1px solid #e1e1e9; border-radius: 14px; background: #f6f6f9; }
.fl-service-price-mode > div { grid-template-columns: repeat(3,minmax(0,1fr)); }
.fl-service-price-type > div > label { position: relative; display: block; margin: 0; cursor: pointer; }
.fl-service-price-type input { position: absolute !important; width: 1px !important; height: 1px !important; min-height: 0 !important; padding: 0 !important; opacity: 0; }
.fl-service-price-type label > span { display: grid; min-height: 66px; padding: 13px 15px; align-content: center; gap: 4px; border: 1px solid transparent; border-radius: 10px; color: #777b88; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease; }
.fl-service-price-type label strong { color: #353744; font-size: 12px; font-weight: 650; }
.fl-service-price-type label small { color: inherit; font-size: 9px; line-height: 1.45; }
.fl-service-price-type input:checked + span { border-color: #c9c3fb; background: #fff; color: #686d7b; box-shadow: 0 6px 18px rgba(53,45,112,.08); }
.fl-service-price-type input:checked + span strong { color: #5849dd; }
.fl-service-price-type input:focus-visible + span { outline: 3px solid rgba(103,87,245,.22); outline-offset: 2px; }
.fl-service-price-type > small[data-profile-error] { display: block; margin-top: 6px; color: #b83e48; font-size: 9px; }
.fl-service-price-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.fl-service-price-fields > label { display: grid; align-content: start; gap: 8px; }
.fl-service-price-fields > label > span { color: #555c69; font-size: 13px; font-weight: 570; }
.fl-service-price-fields > label > small { color: #858a97; font-size: 12px; line-height: 1.45; }
.fl-profile-content-upload { position: relative; cursor: pointer; }
.fl-profile-content-upload > input { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0; pointer-events: none; }
.fl-profile-content-upload > span {
    position: relative;
    display: grid;
    min-height: 150px;
    padding: 24px;
    place-items: center;
    align-content: center;
    gap: 6px;
    overflow: hidden;
    border: 1px dashed #cbc8df;
    border-radius: 13px;
    background: #f8f7fc center/cover no-repeat;
    text-align: center;
    transition: border-color .2s ease, background-color .2s ease;
}
.fl-profile-content-upload:hover > span { border-color: #8e83ea; background-color: #f3f1ff; }
.fl-profile-content-upload > span::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,23,36,.68), rgba(22,23,36,.08)); opacity: 0; transition: opacity .2s ease; }
.fl-profile-content-upload > span > * { position: relative; z-index: 1; }
.fl-profile-content-upload > span > i { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: #ebe8ff; color: #5748df; font-style: normal; font-size: 18px; }
.fl-profile-content-upload > span > strong { font-size: 13px; font-weight: 620; }
.fl-profile-content-upload > span > small { color: #8b8f9c; font-size: 10px; }
.fl-profile-content-upload > span.has-image::after { opacity: 1; }
.fl-profile-content-upload > span.has-image { color: #fff; }
.fl-profile-content-upload > span.has-image > i { background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(7px); }
.fl-profile-content-upload > span.has-image > small { color: rgba(255,255,255,.78); }
.fl-profile-money-field { display: flex; overflow: hidden; border: 1px solid #dfe1e9; border-radius: 12px; background: #fff; }
.fl-profile-money-field:focus-within { border-color: #9f96fb; box-shadow: 0 0 0 3px rgba(103,87,245,.1); }
.fl-profile-money-field input { border: 0 !important; border-radius: 0 !important; box-shadow: none !important; }
.fl-profile-money-field b { display: flex; padding: 0 13px; align-items: center; background: #f5f4f8; color: #696e7b; font-size: 11px; font-weight: 620; }
.fl-profile-content-form-grid [data-profile-error]:not(:empty) { color: #b63642; font-size: 10px; line-height: 1.4; }
.fl-profile-content-form-grid [aria-invalid="true"] { border-color: #db6872; }
.fl-profile-rich-editor {
    --kc-bg-color: #fff;
    --kc-border-color: #dfe1e9;
    --kc-checkbox-color: #6757f5;
    --kc-text-color: #292a36;
    display: grid;
    gap: 8px;
    min-width: 0;
}
.fl-profile-rich-editor > small { color: #858a97; font-size: 10px; line-height: 1.5; }
.fl-profile-rich-editor .kc-input-block { min-width: 0; }
.fl-profile-rich-editor .kc-input-editor > label > span { font-family: Manrope,sans-serif; }
.fl-profile-rich-editor .kc-editor { border-radius: 13px; }
.fl-profile-rich-editor .kc-editor-toolbar { padding: 8px; }
.fl-profile-rich-editor .kc-editor-content { max-height: 520px; font-family: Manrope,sans-serif; }
.fl-profile-gallery-upload {
    position: relative;
    display: grid;
    min-width: 0;
    padding: 18px;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 13px;
    border: 1px dashed #cbc8df;
    border-radius: 13px;
    background: #f8f7fc;
    cursor: pointer;
}
.fl-profile-gallery-upload > input { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0; pointer-events: none; }
.fl-profile-gallery-upload > span { display: grid; gap: 4px; }
.fl-profile-gallery-upload > span strong { color: #343744; font-size: 12px; font-weight: 620; }
.fl-profile-gallery-upload > span small { color: #858a97; font-size: 9px; }
.fl-profile-gallery-upload > b { display: inline-flex; min-height: 38px; padding: 0 12px; align-items: center; gap: 7px; border-radius: 9px; background: #ece9ff; color: #5949df; font-size: 10px; font-weight: 620; }
.fl-profile-gallery-upload > b i { font-style: normal; font-size: 16px; font-weight: 400; }
.fl-profile-gallery-upload > small { grid-column: 1/-1; }
.fl-profile-gallery-draft { display: grid; grid-column: 1/-1; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.fl-profile-gallery-draft[hidden] { display: none; }
.fl-profile-gallery-draft figure { position: relative; height: 110px; margin: 0; overflow: hidden; border: 1px solid transparent; border-radius: 9px; background: #e7e5ef; cursor: grab; transition: opacity .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.fl-profile-gallery-draft figure:active { cursor: grabbing; }
.fl-profile-gallery-draft figure.is-dragging { opacity: .42; transform: scale(.97); }
.fl-profile-gallery-draft figure.is-drop-target { border-color: #7b6cf8; box-shadow: 0 0 0 3px rgba(103,87,245,.18); }
.fl-profile-gallery-draft img { width: 100%; height: 100%; object-fit: cover; }
.fl-profile-gallery-draft__position { position: absolute; right: 7px; bottom: 7px; display: grid; min-width: 24px; height: 24px; padding: 0 6px; place-items: center; border-radius: 6px; background: rgba(23,24,38,.78); color: #fff; font-size: 9px; backdrop-filter: blur(8px); }
.fl-profile-gallery-draft__handle { position: absolute; left: 7px; top: 7px; display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 7px; background: rgba(25,26,39,.72); color: #fff; font-size: 15px; font-weight: 500; letter-spacing:-3px; backdrop-filter:blur(8px); }
.fl-profile-gallery-draft__controls { position:absolute; z-index:2; left:7px; right:7px; bottom:7px; display:flex; align-items:center; gap:4px; opacity:0; transform:translateY(5px); transition:opacity .18s ease,transform .18s ease; }
.fl-profile-gallery-draft figure:hover .fl-profile-gallery-draft__controls,
.fl-profile-gallery-draft figure:focus-within .fl-profile-gallery-draft__controls { opacity:1; transform:none; }
.fl-profile-gallery-draft__move,
.fl-profile-gallery-draft__remove {
    display:grid;
    width:28px;
    height:28px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 7px;
    background: rgba(25,26,39,.78);
    color: #fff;
    font: 400 16px/1 Manrope,sans-serif;
    cursor: pointer;
    backdrop-filter: blur(8px);
}
.fl-profile-gallery-draft__remove { margin-left:auto; }
.fl-profile-gallery-draft__move:hover,
.fl-profile-gallery-draft__move:focus-visible { background:#6757f5; outline:none; }
.fl-profile-gallery-draft__remove:hover,
.fl-profile-gallery-draft__remove:focus-visible { background: #a9464d; outline: none; }

html[data-theme="dark"] .fl-profile-rich-editor {
    --kc-bg-color:#171a21;
    --kc-border-color:#3a3f4c;
    --kc-checkbox-color:#a99eff;
    --kc-text-color:#eef0f5;
}
html[data-theme="dark"] .fl-profile-gallery-upload { border-color:#3d4250; background:#191c24; }
html[data-theme="dark"] .fl-profile-gallery-upload > span strong { color:#eef0f5; }
html[data-theme="dark"] .fl-profile-gallery-upload > span small { color:#969dab; }
html[data-theme="dark"] .fl-profile-gallery-upload > b { background:#302c4b; color:#cbc4ff; }
.fl-portfolio-delete-dialog [data-profile-portfolio-confirm-apply] { border-color: #a94444; background: #a94444; color: #fff; }
.fl-profile-comments-toggle {
    display: flex !important;
    min-height: 68px;
    padding: 14px 16px;
    align-items: center;
    gap: 12px;
    border: 1px solid #e1e1e9;
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
}
.fl-profile-comments-toggle input[type="checkbox"] { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0; }
.fl-profile-comments-toggle > i { position: relative; width: 42px; height: 24px; flex: 0 0 auto; border-radius: 8px; background: #d9dae2; transition: background .2s ease; }
.fl-profile-comments-toggle > i::after { content: ""; position: absolute; left: 4px; top: 4px; width: 16px; height: 16px; border-radius: 5px; background: #fff; box-shadow: 0 2px 6px rgba(28,29,42,.18); transition: transform .2s ease; }
.fl-profile-comments-toggle input[type="checkbox"]:checked + i { background: #6757f5; }
.fl-profile-comments-toggle input[type="checkbox"]:checked + i::after { transform: translateX(18px); }
.fl-profile-comments-toggle input[type="checkbox"]:focus-visible + i { outline: 3px solid rgba(103,87,245,.2); outline-offset: 2px; }
.fl-profile-comments-toggle > span { display: grid; gap: 4px; }
.fl-profile-comments-toggle strong { color: #343744; font-size: 12px; font-weight: 620; }
.fl-profile-comments-toggle small { color: #858a97; font-size: 9px; line-height: 1.45; }

html[data-theme="dark"] .fl-profile-tabs,
html[data-theme="dark"] .fl-active-order,
html[data-theme="dark"] .fl-profile-add-button { border-color: #3a3b4b !important; background: #242532 !important; color: #ececf2 !important; }
html[data-theme="dark"] .fl-profile-tabs button { color: #b9bbc5; }
html[data-theme="dark"] .fl-profile-tabs button:hover { background: #30313f; color: #fff; }
html[data-theme="dark"] .fl-profile-tabs button[aria-selected="true"] { background: #7162f3; color: #fff; }
html[data-theme="dark"] .fl-profile-tabs button > b { background: #383946; color: #d7d8df; }
html[data-theme="dark"] .fl-profile-tabs button > i { border-color: #4b4c5b; }
html[data-theme="dark"] .fl-active-order > footer,
html[data-theme="dark"] .fl-profile-results { border-color: #3a3b49; }
html[data-theme="dark"] .fl-profile-content-upload > span { border-color: #4b4c5c; background-color: #292a37; }
html[data-theme="dark"] .fl-profile-money-field { border-color: #484a59; background: #242532; }
html[data-theme="dark"] .fl-profile-money-field b { background: #30313e; color: #c9cad1; }
html[data-theme="dark"] .fl-service-price-type > legend { color: #c3c4cc; }
html[data-theme="dark"] .fl-service-price-type > div { border-color: #484a59; background: #20212c; }
html[data-theme="dark"] .fl-service-price-type label > span { color: #aeb0ba; }
html[data-theme="dark"] .fl-service-price-type label strong { color: #e3e4ea; }
html[data-theme="dark"] .fl-service-price-type input:checked + span { border-color: #6e63aa; background: #30313f; color: #c6c7cf; box-shadow: 0 7px 20px rgba(0,0,0,.22); }
html[data-theme="dark"] .fl-service-price-type input:checked + span strong { color: #bcb4ff; }
html[data-theme="dark"] .fl-service-price-fields > label > span { color: #d1d2d9; }
html[data-theme="dark"] .fl-profile-gallery-upload,
html[data-theme="dark"] .fl-profile-comments-toggle { border-color: #4b4c5c; background: #292a37; }
html[data-theme="dark"] .fl-profile-gallery-upload > span strong,
html[data-theme="dark"] .fl-profile-comments-toggle strong { color: #ececf2; }
html[data-theme="dark"] .fl-service-card__manage button { border-color: #4a4b5a; background: rgba(31,32,43,.94); color: #e1e2e8; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
html[data-theme="dark"] .fl-service-card__manage button:hover { border-color: #6b609e; background: #292a39; }
html[data-theme="dark"] .fl-service-card__manage button.is-delete { border-color: #70434a; color: #ffabb4; }
html[data-theme="dark"] .fl-service-card footer .fl-service-card__unit { background: #302c4b; color: #c9c2ff; }
.fl-service-delete-dialog [data-profile-service-confirm-apply] { border-color: #a94444; background: #a94444; color: #fff; }
html[data-theme="dark"] .fl-service-delete-dialog [data-profile-service-confirm-apply] { border-color: #a94444; background: #a94444; color: #fff; }

@media (max-width: 760px) {
    .fl-profile-tabs { padding: 6px; border-radius: 13px; }
    .fl-profile-tabs button { min-height: 45px; padding-inline: 11px; }
    .fl-profile-tab-panel { padding-top: 27px; }
    .fl-active-orders { grid-template-columns: 1fr; }
    .fl-profile-tab-panel .fl-profile-section__head { align-items: flex-start; }
    .fl-profile-add-button { width: 100%; justify-content: center; }
    .fl-service-price-type > div { grid-template-columns: 1fr; }
    .fl-service-price-fields { grid-template-columns: 1fr; }
    .fl-profile-results { margin-top: 42px; padding-top: 34px; }
}

@media (max-width: 520px) {
    .fl-profile-tabs { margin-inline: -2px; }
    .fl-profile-tabs button { grid-template-columns: 21px auto auto; gap: 7px; }
    .fl-profile-tabs button > i { width: 21px; height: 21px; }
    .fl-profile-tabs button > b { min-width: 20px; height: 20px; }
    .fl-profile-tab-panel .fl-profile-section__head h2 { font-size: 28px; }
    .fl-active-order { min-height: 250px; padding: 18px; }
    .fl-profile-content-dialog { width: 100%; }
    .fl-profile-gallery-upload { grid-template-columns: 1fr; }
    .fl-profile-gallery-upload > b { justify-content: center; }
    .fl-profile-gallery-draft { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .fl-portfolio-card__manage button { width: 32px; padding: 0; justify-content: center; }
    .fl-portfolio-card__manage button > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
    .fl-profile-tab-panel { animation: none; }
    .fl-active-order,
    .fl-profile-add-button { transition: none; }
}

/* zzzzz-ui-icons.css */
/* Shared decorative SVGs: preserve control hit areas and inherit both themes. */
.fl-public-profile .fl-ui-icon,
.fl-profile-dialog .fl-ui-icon { flex-shrink: 0; vertical-align: middle; }
.fl-profile-meta i { display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; flex: 0 0 20px; line-height: 1; }
.fl-profile-name-row > button .fl-ui-icon { width: 20px; height: 20px; }
.fl-profile-roleline .is-verified i { flex: 0 0 16px; }
.fl-review-card__author > .fl-profile-review-score,
.fl-client-projects .fl-profile-project-score,
.fl-completed-list article > div:last-child > .fl-profile-project-score { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; line-height: 1.4; }
.fl-profile-review-score .fl-ui-icon,
.fl-profile-project-score .fl-ui-icon { fill: currentColor; stroke-width: 1.3; }
.fl-profile-identity__actions .fl-button > span,
.fl-profile-side-card :is(a, button) > span,
.fl-portfolio-card__copy > a > span { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* footer.css */
.fl-footer { padding: 72px 0 24px; background: var(--fl-ink); color: #fff; }
.fl-footer__top { display: grid; padding-bottom: 65px; grid-template-columns: minmax(280px,.8fr) minmax(0,1.3fr); gap: 80px; border-bottom: 1px solid rgba(255,255,255,.11); }
.fl-footer .fl-brand { color: #fff; }
.fl-footer__brand > p { max-width: 310px; margin: 20px 0 0; color: #a8acb7; font-size: 14px; line-height: 1.65; }
.fl-footer__support { display: flex; width: fit-content; max-width: 100%; margin-top: 19px; padding: 9px 13px 9px 9px; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.035); color: #e9ebf1; text-decoration: none; }
.fl-footer__support-icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 8px; background: rgba(185,243,74,.09); color: var(--fl-accent); }
.fl-footer__support-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.fl-footer__support-copy { min-width: 0; }
.fl-footer__support-copy small { display: block; margin-bottom: 2px; color: #a8acb7; font-size: 11px; line-height: 1.4; }
.fl-footer__support-copy > span { display: block; font-size: 14px; font-weight: 470; line-height: 1.5; overflow-wrap: anywhere; }
.fl-footer__support:hover { border-color: rgba(185,243,74,.4); background: rgba(185,243,74,.065); color: #fff; }
.fl-footer__support:focus-visible { outline: 2px solid var(--fl-accent); outline-offset: 4px; }
.fl-footer__support + .fl-footer__up { margin-top: 24px; }
.fl-footer__up { display: inline-flex; margin-top: 34px; align-items: center; gap: 10px; color: #fff; font-size: 12px; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: .07em; }
.fl-footer__up span { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transition: background .2s ease, color .2s ease, transform .2s ease; }
.fl-footer__up:hover span { background: var(--fl-accent); color: var(--fl-ink); transform: translateY(-3px); }
.fl-footer__nav { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 35px; }
.fl-footer__nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.fl-footer__nav strong { margin-bottom: 8px; color: #9195a0; font-size: 12px; font-weight: 590; letter-spacing: .09em; text-transform: uppercase; }
.fl-footer__nav a { color: #d8dae0; font-size: 14px; font-weight: 470; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.fl-footer__nav a:hover { color: var(--fl-accent); transform: translateX(3px); }
.fl-footer__bottom { display: flex; padding-top: 22px; align-items: center; justify-content: space-between; gap: 20px; color: #afb3bd; font-size: 12px; }
.fl-footer__bottom i { color: var(--fl-accent); font-style: normal; }
.fl-footer__legal{display:flex;flex-wrap:wrap;gap:12px 24px;align-items:center}.fl-footer__legal a,.fl-footer__legal button{color:inherit;font:inherit;text-decoration:none;background:none;border:0;padding:0;cursor:pointer}.fl-footer__legal a:hover,.fl-footer__legal button:hover{color:#fff}.fl-footer__legal :focus-visible{outline:2px solid var(--fl-accent);outline-offset:5px}

@media (max-width: 820px) {
    .fl-footer__top { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
    .fl-footer { padding-top: 56px; }
    .fl-footer__nav { grid-template-columns: 1fr 1fr; row-gap: 40px; }
    .fl-footer__bottom { align-items: flex-start; flex-direction: column; }
}

/* cookies.css */
.fl-cookie-card[hidden]{display:none!important}
.fl-cookie-card{position:fixed;z-index:1180;left:22px;bottom:22px;box-sizing:border-box;width:min(400px,calc(100vw - 44px));max-height:75dvh;overflow-y:auto;padding:19px;border:1px solid var(--fl-line,#363945);border-radius:12px;color:var(--fl-text,#f4f4fa);background:var(--fl-surface,#1d2029);box-shadow:0 16px 48px #0003;font-family:inherit;font-size:13px;font-weight:400;line-height:1.55}
.fl-cookie-card__head{display:flex;align-items:center;gap:9px;margin-bottom:10px}.fl-cookie-card__head h2{margin:0;font-family:inherit;font-size:17px;font-weight:500;line-height:1.3}.fl-cookie-card__mark{display:grid;place-items:center;flex:none;width:29px;height:29px;border-radius:8px;background:#8b71ec1c;color:#9d85f2}.fl-cookie-card__mark svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.7}
.fl-cookie-card p{margin:0;font-family:inherit;font-size:13px;line-height:1.55}.fl-cookie-card__links{display:flex;flex-wrap:wrap;gap:8px 14px;margin-top:10px!important}.fl-cookie-card__links a{font-size:12px;color:var(--fl-muted,#c0bbc9);text-decoration:underline;text-underline-offset:3px}.fl-cookie-card__actions{display:flex;justify-content:flex-end;margin-top:13px}
.fl-cookie-card__copy--mobile,.fl-cookie-card__mobile-details{display:none}
.fl-cookie-card__actions button{min-height:40px;padding:9px 20px;border:1px solid transparent;border-radius:8px;background:#6757f5;color:#fff;font-family:inherit;font-size:13px;font-weight:500;line-height:1.4;cursor:pointer}.fl-cookie-card__actions button:hover{filter:brightness(1.08)}.fl-cookie-card__actions button:focus-visible{outline:2px solid #a08bea;outline-offset:3px}.fl-cookie-card__actions button:disabled{opacity:.55;cursor:default;filter:none}
.fl-cookie-card__status:empty{display:none}.fl-cookie-card .fl-cookie-card__status{font-size:12px;margin-top:10px}.fl-cookie-card__status.is-error{color:#ef8c93}.fl-cookie-noscript{padding:12px 20px;font-size:13px;text-align:center}.fl-cookie-noscript a{color:inherit}
[data-theme=light] .fl-cookie-card{color:#242532;background:#fff;border-color:#dedee8;box-shadow:0 14px 44px #32344a1c}[data-theme=light] .fl-cookie-card a{color:#605971}[data-theme=light] .fl-cookie-card__status.is-error{color:#aa3545}
@media(max-width:720px){
    .fl-cookie-card{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:8px 12px;left:10px;right:10px;bottom:calc(10px + env(safe-area-inset-bottom,0px));width:auto;max-height:60dvh;padding:12px 14px;border-radius:10px}
    .fl-cookie-card__head{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip-path:inset(50%);white-space:nowrap}
    .fl-cookie-card__copy--desktop,.fl-cookie-card__links{display:none}
    .fl-cookie-card .fl-cookie-card__copy--mobile{display:block;grid-column:1/-1;font-size:12px;line-height:1.5}
    .fl-cookie-card .fl-cookie-card__mobile-details{display:block;min-width:0;align-self:center;font-size:12px;line-height:1.4}
    .fl-cookie-card__mobile-details a{display:inline-flex;min-height:44px;align-items:center;color:var(--fl-muted,#c0bbc9);text-decoration:underline;text-underline-offset:3px;overflow-wrap:anywhere}
    .fl-cookie-card__actions{margin-top:0;align-self:center}
    .fl-cookie-card__actions button{min-height:44px;padding:9px 16px;font-size:12px;white-space:nowrap}
    .fl-cookie-card .fl-cookie-card__status{grid-column:1/-1;margin-top:0}
}
.fl-cookie-card__mobile-details a:focus-visible{outline:2px solid #a08bea;outline-offset:3px;border-radius:3px}
@media(max-width:950px){html.fl-cookie-panel-open .fl-chat-notifications,html.fl-cookie-panel-open .fl-pay-toast-host,html.fl-cookie-panel-open .fl-profile-toast-region,html.fl-cookie-panel-open .fl-work-toast-region,html.fl-cookie-panel-open .fl-messages-toast,html.fl-cookie-panel-open .fl-account-toast{bottom:calc(var(--fl-cookie-panel-height,0px) + 26px)!important;max-height:calc(100dvh - var(--fl-cookie-panel-height,0px) - 120px)}}