#fyrst-chat{--fc-bg:#0B1F1A;--fc-lime:#C8E64A;--fc-teal:#0E5C4A;--fc-white:#F2F2F0;--fc-muted:#A8B5A0;--fc-font-h:'Oswald',sans-serif;--fc-font-b:'Plus Jakarta Sans',sans-serif;position:fixed;bottom:24px;z-index:2147483000;font-family:var(--fc-font-b)}
#fyrst-chat.fyrst-chat--right{right:24px}
#fyrst-chat.fyrst-chat--left{left:24px}
.fyrst-chat *{box-sizing:border-box}
.fyrst-chat__trigger{position:relative;width:56px;height:56px;border-radius:50%;border:none;cursor:pointer;background:var(--fc-lime);color:var(--fc-bg);display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(200,230,74,.25);transition:transform .2s ease}
.fyrst-chat__trigger:hover{transform:translateY(-2px)}
.fyrst-chat__trigger svg{width:26px;height:26px}
.fyrst-chat__tip{position:absolute;bottom:calc(100% + 10px);right:0;white-space:nowrap;background:var(--fc-bg);color:var(--fc-white);font-size:12.5px;font-weight:500;padding:7px 12px;border-radius:8px;box-shadow:0 6px 20px rgba(0,0,0,.25);opacity:0;transform:translateY(6px);transition:opacity .25s,transform .25s;pointer-events:none}
.fyrst-chat--left .fyrst-chat__tip{right:auto;left:0}
.fyrst-chat__trigger:hover .fyrst-chat__tip{opacity:1;transform:none}
#fyrst-chat.is-open .fyrst-chat__trigger{display:none}
.fyrst-chat__window{position:absolute;bottom:0;right:0;width:380px;max-width:calc(100vw - 32px);height:520px;max-height:calc(100dvh - 48px);background:var(--fc-bg);border-radius:16px;overflow:hidden;display:none;flex-direction:column;box-shadow:0 24px 60px -12px rgba(0,0,0,.5);border:1px solid rgba(200,230,74,.14)}
#fyrst-chat.is-open .fyrst-chat__window{display:flex}
.fyrst-chat--left .fyrst-chat__window{right:auto;left:0}
.fyrst-chat__header{display:flex;align-items:center;gap:10px;padding:13px 14px;background:var(--fc-teal)}
.fyrst-chat__avatar{width:34px;height:34px;border-radius:9px;background:var(--fc-lime);color:var(--fc-bg);display:flex;align-items:center;justify-content:center;font-family:var(--fc-font-h);font-weight:700;font-size:18px;flex-shrink:0}
.fyrst-chat__meta{display:flex;flex-direction:column;line-height:1.2;flex:1}
.fyrst-chat__name{color:var(--fc-white);font-weight:700;font-size:15px}
.fyrst-chat__status{color:var(--fc-lime);font-size:11.5px;display:flex;align-items:center;gap:5px}
.fyrst-chat__status i{width:7px;height:7px;border-radius:50%;background:var(--fc-lime);box-shadow:0 0 6px var(--fc-lime)}
.fyrst-chat__close{background:transparent;border:none;color:var(--fc-white);cursor:pointer;opacity:.8;padding:4px}
.fyrst-chat__close svg{width:20px;height:20px}
.fyrst-chat__close:hover{opacity:1}
.fyrst-chat__body{flex:1;min-height:0;overflow-y:auto;overflow-x:hidden;padding:16px 14px;display:flex;flex-direction:column;gap:10px}
.fyrst-chat__msg{max-width:84%;font-size:14px;line-height:1.5;padding:10px 13px;border-radius:14px;white-space:pre-wrap;word-wrap:break-word;overflow-wrap:anywhere}
.fyrst-chat__msg a{color:inherit;text-decoration:underline}
.fyrst-chat__msg--bot{align-self:flex-start;background:rgba(14,92,74,.5);color:var(--fc-white);border-bottom-left-radius:4px}
.fyrst-chat__msg--user{align-self:flex-end;background:var(--fc-lime);color:var(--fc-bg);font-weight:500;border-bottom-right-radius:4px}
.fyrst-chat__ctas{display:flex;flex-wrap:wrap;gap:7px;align-self:flex-start;margin-top:-2px}
.fyrst-chat__cta{font-family:var(--fc-font-b);font-size:12.5px;font-weight:600;color:var(--fc-lime);background:rgba(200,230,74,.08);border:1px solid rgba(200,230,74,.3);border-radius:100px;padding:7px 14px;cursor:pointer;text-decoration:none;transition:background .2s}
.fyrst-chat__cta:hover{background:rgba(200,230,74,.18)}
.fyrst-chat__typing{align-self:flex-start;display:inline-flex;gap:5px;padding:11px 14px;background:rgba(14,92,74,.5);border-radius:14px;border-bottom-left-radius:4px}
.fyrst-chat__typing i{width:7px;height:7px;border-radius:50%;background:var(--fc-lime);animation:fcbob 1.4s infinite}
.fyrst-chat__typing i:nth-child(2){animation-delay:.2s}.fyrst-chat__typing i:nth-child(3){animation-delay:.4s}
@keyframes fcbob{0%,60%,100%{transform:translateY(0);opacity:.4}30%{transform:translateY(-5px);opacity:1}}
.fyrst-chat__inputbar{display:flex;align-items:flex-end;gap:8px;padding:10px 12px;border-top:1px solid rgba(168,181,160,.15)}
.fyrst-chat__inputbar textarea{flex:1;resize:none;max-height:96px;border-radius:12px;border:1px solid rgba(168,181,160,.18);background:rgba(242,242,240,.08);color:var(--fc-white);font-family:var(--fc-font-b);font-size:16px;padding:9px 12px;outline:none;line-height:1.4}
.fyrst-chat__inputbar textarea::placeholder{color:var(--fc-muted)}
.fyrst-chat__send{width:38px;height:38px;flex-shrink:0;border:none;border-radius:50%;background:var(--fc-lime);color:var(--fc-bg);cursor:pointer;display:flex;align-items:center;justify-content:center}
.fyrst-chat__send svg{width:18px;height:18px}
.fyrst-chat__send:disabled{opacity:.5;cursor:default}
.fyrst-chat__powered{text-align:center;font-size:10.5px;color:var(--fc-muted);padding:0 0 8px}
@media(max-width:640px){#fyrst-chat{bottom:0;right:0;left:0}#fyrst-chat.fyrst-chat--left{left:0}.fyrst-chat__trigger{position:fixed;bottom:calc(16px + env(safe-area-inset-bottom));right:16px;z-index:2147483001}.fyrst-chat--left .fyrst-chat__trigger{right:auto;left:16px}.fyrst-chat__window{position:fixed;inset:0;width:100%;max-width:100%;height:100vh;height:100dvh;max-height:100vh;max-height:100dvh;border-radius:0}.fyrst-chat__close{padding:8px;margin:-4px -4px -4px 0}.fyrst-chat__close svg{width:24px;height:24px}.fyrst-chat__powered{padding-bottom:calc(8px + env(safe-area-inset-bottom))}}
@media(prefers-reduced-motion:reduce){.fyrst-chat__typing i{animation:none}.fyrst-chat__trigger{transition:none}}