.pfsm-widget,
.pfsm-widget * { box-sizing: border-box; }

.pfsm-widget {
  --pfsm-bg: #050519;
  --pfsm-panel: #090922;
  --pfsm-surface: #10102c;
  --pfsm-surface-soft: #171533;
  --pfsm-text: #f9f8ff;
  --pfsm-muted: #aaa7bf;
  --pfsm-cyan: #35e5ff;
  position: fixed;
  right: 24px;
  bottom: max(24px, var(--pfsm-bottom-clearance, 0px));
  z-index: 2147483000;
  transition: bottom .22s ease;
  color: var(--pfsm-text);
  font: 15px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  text-align: left;
  letter-spacing: normal;
}

.pfsm-widget[data-position="left"] { right: auto; left: 24px; }
body.pfsm-modal-open { overflow: hidden !important; }

.pfsm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(2, 2, 14, .76);
  backdrop-filter: blur(4px);
  animation: pfsm-backdrop-enter .2s ease-out;
}

.pfsm-backdrop[hidden] { display: none !important; }

.pfsm-launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 8px 22px 8px 9px;
  border: 1px solid #e943d9;
  border-color: color-mix(in srgb, var(--pfsm-accent) 78%, white 22%);
  border-radius: 999px;
  background: linear-gradient(135deg, #221045 0%, #610a59 100%);
  color: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .48), 0 0 26px rgba(255, 43, 214, .26);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .48), 0 0 26px color-mix(in srgb, var(--pfsm-accent) 26%, transparent);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pfsm-launcher:hover {
  transform: translateY(-2px);
  border-color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .54), 0 0 34px rgba(255, 43, 214, .38);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .54), 0 0 34px color-mix(in srgb, var(--pfsm-accent) 38%, transparent);
}

.pfsm-launcher:focus-visible,
.pfsm-panel button:focus-visible,
.pfsm-panel input:focus-visible,
.pfsm-panel textarea:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.pfsm-launcher-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #268dff 0%, #7338ee 48%, var(--pfsm-accent) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 0 18px rgba(255,43,214,.25);
}

.pfsm-launcher-icon svg { width: 23px; height: 23px; fill: #fff; }
.pfsm-launcher-label { white-space: nowrap; }
.pfsm-launcher-badge { position: absolute; top: -5px; right: -3px; min-width: 22px; height: 22px; padding: 0 5px; border: 2px solid #fff; border-radius: 99px; background: #ff315f; color: white; font-size: 11px; line-height: 18px; text-align: center; }

.pfsm-panel {
  position: fixed;
  top: 28px;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 2;
  width: min(1400px, calc(100vw - 48px));
  height: min(810px, calc(100vh - 28px - max(28px, var(--pfsm-bottom-clearance, 0px))));
  height: min(810px, calc(100dvh - 28px - max(28px, var(--pfsm-bottom-clearance, 0px))));
  overflow: hidden;
  border: 1px solid #a922a4;
  border-color: color-mix(in srgb, var(--pfsm-accent) 62%, #653d91 38%);
  border-radius: 28px;
  background: var(--pfsm-panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .68), 0 0 32px rgba(255,43,214,.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .68), 0 0 32px color-mix(in srgb, var(--pfsm-accent) 18%, transparent);
  isolation: isolate;
  transform: translateX(-50%);
  animation: pfsm-enter .22s ease-out;
}

.pfsm-panel::before {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  z-index: 4;
  width: auto;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--pfsm-accent) 0%, #a937f3 55%, var(--pfsm-cyan) 100%);
  box-shadow: 0 0 15px rgba(255,43,214,.7), 0 0 22px rgba(53,229,255,.24);
  content: "";
}

.pfsm-widget[data-position="left"] .pfsm-panel { right: auto; left: 50%; }
.pfsm-panel[hidden],
.pfsm-intro[hidden],
.pfsm-chat[hidden],
.pfsm-preview[hidden],
.pfsm-upload-progress[hidden] { display: none !important; }

@keyframes pfsm-enter {
  from { opacity: 0; transform: translate(-50%, 16px) scale(.975); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes pfsm-backdrop-enter { from { opacity: 0; } to { opacity: 1; } }

.pfsm-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 13px 17px 13px 18px;
  border-bottom: 1px solid rgba(255,43,214,.27);
  background: linear-gradient(110deg, #0d0e2d 0%, #0b0b26 64%, #180d32 100%);
}

.pfsm-brand { display: flex; min-width: 0; align-items: center; gap: 14px; }
.pfsm-station-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: linear-gradient(135deg, #238dff 0%, #6b3bea 48%, var(--pfsm-accent) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 0 22px rgba(255,43,214,.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 0 22px color-mix(in srgb, var(--pfsm-accent) 26%, transparent);
  font-size: 27px;
}

.pfsm-brand-copy { min-width: 0; }
.pfsm-brand-copy strong,
.pfsm-brand-copy span { display: block; }
.pfsm-brand-kicker { margin-bottom: 1px; color: #68e8ff !important; font-size: 9px !important; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.pfsm-brand-copy strong { overflow: hidden; color: #fff; font-size: 19px; font-weight: 850; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.pfsm-brand-subtitle { margin-top: 3px; color: #b9b5cc; font-size: 12px; }

.pfsm-close {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0 0 3px;
  border: 1px solid #393750;
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  color: #fff;
  cursor: pointer;
  font: 300 30px/1 Arial, sans-serif;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.pfsm-close:hover { transform: rotate(3deg); border-color: var(--pfsm-accent); background: rgba(255,43,214,.1); }

.pfsm-intro {
  position: relative;
  display: block;
  height: calc(100% - 88px);
  overflow: auto;
  padding: 32px 44px 28px;
  background:
    radial-gradient(circle at 96% 8%, rgba(190,25,169,.24), transparent 34%),
    radial-gradient(circle at 10% 105%, rgba(45,90,205,.18), transparent 38%),
    linear-gradient(135deg, #05051a 0%, #0b0823 58%, #150828 100%);
  scrollbar-color: #b11796 transparent;
  scrollbar-width: thin;
}

.pfsm-intro-inner { width: min(860px, 100%); margin: 0 auto; text-align: center; }
.pfsm-intro-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 15px;
  border: 1px solid #302c4e;
  border-radius: 23px;
  background: linear-gradient(145deg, #171631, #20143d);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 16px 32px rgba(0,0,0,.25);
}

.pfsm-intro-icon svg { width: 34px; height: 34px; fill: #fff; filter: drop-shadow(0 0 8px rgba(255,43,214,.45)); }
.pfsm-intro-kicker { display: block; margin-bottom: 6px; color: #f151da; color: color-mix(in srgb, var(--pfsm-accent) 78%, white 22%); font-size: 10px; font-weight: 850; letter-spacing: .19em; text-transform: uppercase; }
.pfsm-intro h2 { margin: 0; color: #fff; font-size: clamp(28px, 2.1vw, 38px); font-weight: 900; letter-spacing: -.035em; line-height: 1.12; }
.pfsm-intro-lead { max-width: 660px; margin: 10px auto 20px; color: #bab6cc; font-size: 16px; line-height: 1.55; }

.pfsm-intro-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #302a51;
  border-radius: 22px;
  background: rgba(14,13,42,.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(9px);
}

.pfsm-intro label { color: #fff; font-weight: 800; text-align: left; }
.pfsm-intro label span { color: var(--pfsm-accent); }
.pfsm-intro input {
  width: 100%;
  height: 58px;
  margin: 0;
  padding: 0 18px;
  border: 2px solid #4b3370;
  border-radius: 15px;
  outline: 0;
  background: #070719;
  color: #fff;
  font: inherit;
  font-size: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.pfsm-intro input::placeholder { color: #858197; }
.pfsm-intro input:focus { border-color: var(--pfsm-accent); box-shadow: 0 0 0 4px rgba(255,43,214,.14), 0 0 22px rgba(53,229,255,.06); }
.pfsm-start {
  min-height: 58px;
  padding: 12px 20px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(100deg, var(--pfsm-accent) 0%, #b42ee8 52%, #7d28ec 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(181,25,177,.2);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.pfsm-start span { margin-left: 6px; font-size: 18px; }
.pfsm-start:hover { transform: translateY(-1px); filter: brightness(1.1); box-shadow: 0 13px 30px rgba(181,25,177,.28); }
.pfsm-start:disabled { cursor: wait; opacity: .65; transform: none; }
.pfsm-intro-status { min-height: 8px; color: #a5e2b8; font-size: 12px; text-align: center; }
.pfsm-intro-status:empty { display: none; }
.pfsm-intro-status.is-error { display: block; color: #ff9bac; }
.pfsm-intro small { display: block; max-width: 720px; margin: 16px auto 0; color: #858197; font-size: 11px; line-height: 1.45; text-align: center; }

.pfsm-chat {
  position: relative;
  display: flex;
  height: calc(100% - 88px);
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0, rgba(190,25,169,.2), transparent 36%),
    radial-gradient(circle at 0 100%, rgba(43,74,176,.14), transparent 40%),
    var(--pfsm-bg);
}

.pfsm-messages {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 28px clamp(22px, 7vw, 140px) 20px;
  scrollbar-color: #b11796 transparent;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.pfsm-intro::-webkit-scrollbar,
.pfsm-messages::-webkit-scrollbar { width: 9px; }
.pfsm-intro::-webkit-scrollbar-track,
.pfsm-messages::-webkit-scrollbar-track { background: transparent; }
.pfsm-intro::-webkit-scrollbar-thumb,
.pfsm-messages::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: #b11796; background-clip: padding-box; }
.pfsm-intro::-webkit-scrollbar-thumb:hover,
.pfsm-messages::-webkit-scrollbar-thumb:hover { background: var(--pfsm-accent); background-clip: padding-box; }

.pfsm-message { display: flex; margin: 0 0 14px; }
.pfsm-message-visitor { justify-content: flex-end; }
.pfsm-message-admin { justify-content: flex-start; }
.pfsm-bubble {
  max-width: min(78%, 820px);
  padding: 13px 16px 9px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 19px;
  overflow-wrap: anywhere;
  box-shadow: 0 9px 24px rgba(0,0,0,.2);
}

.pfsm-message-admin .pfsm-bubble { border-bottom-left-radius: 5px; background: linear-gradient(145deg, #191832, #211b3c); color: #f5f2ff; }
.pfsm-message-visitor .pfsm-bubble { border-color: rgba(255,255,255,.13); border-bottom-right-radius: 5px; background: linear-gradient(135deg, #74126f, #c522b8); background: linear-gradient(135deg, #74126f, color-mix(in srgb, var(--pfsm-accent) 76%, #7f1876)); color: #fff; }
.pfsm-message-text { font-size: 15px; line-height: 1.5; white-space: pre-wrap; }
.pfsm-bubble time { display: block; margin-top: 5px; color: rgba(255,255,255,.57); font-size: 10px; letter-spacing: .02em; text-align: right; }
.pfsm-media { overflow: hidden; margin: 4px 0 5px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; }
.pfsm-media img,
.pfsm-media video { display: block; width: 100%; max-height: min(520px, 55vh); margin: 0; object-fit: contain; background: #03030c; }

.pfsm-new-messages {
  position: absolute;
  right: clamp(24px, 7vw, 144px);
  bottom: 89px;
  z-index: 2;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: #231b46;
  color: #fff;
  box-shadow: 0 9px 26px rgba(0,0,0,.42), 0 0 14px rgba(255,43,214,.13);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.pfsm-new-messages:hover { border-color: var(--pfsm-accent); background: #302255; }
.pfsm-new-messages[hidden] { display: none !important; }

.pfsm-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 clamp(18px, 7vw, 136px);
  padding: 9px 12px;
  border: 1px solid #393256;
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  background: #16142c;
  color: #d8d5e5;
  font-size: 12px;
}

.pfsm-preview span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pfsm-preview button { flex: 0 0 auto; width: 26px; height: 26px; padding: 0; border: 0; border-radius: 9px; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; font: 18px/1 Arial, sans-serif; }
.pfsm-upload-progress {
  margin: 0 clamp(18px, 7vw, 136px) 10px;
  padding: 11px 14px 13px;
  border: 1px solid #3b315a;
  border-radius: 14px;
  background: #15132d;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.pfsm-upload-progress-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; color: #e5e2ee; font-size: 12px; }
.pfsm-upload-progress-head strong { flex: 0 0 auto; color: #fff; font-size: 12px; }
.pfsm-upload-progress-track { position: relative; height: 8px; overflow: hidden; border-radius: 999px; background: #292443; }
.pfsm-upload-progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pfsm-accent), #9f2fec, var(--pfsm-cyan)); box-shadow: 0 0 14px rgba(255,43,214,.45); transition: width .18s ease; }
.pfsm-upload-progress.is-indeterminate .pfsm-upload-progress-track span { width: 38% !important; animation: pfsm-upload-indeterminate 1.1s ease-in-out infinite; }
.pfsm-upload-progress.is-error { border-color: #8d3850; background: #241329; }
.pfsm-upload-progress.is-error .pfsm-upload-progress-head { margin-bottom: 0; color: #ff9bac; }
.pfsm-upload-progress.is-error .pfsm-upload-progress-track { display: none; }
@keyframes pfsm-upload-indeterminate { from { transform: translateX(-120%); } to { transform: translateX(300%); } }
.pfsm-compose {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 13px clamp(18px, 7vw, 136px);
  border-top: 1px solid rgba(255,43,214,.18);
  background: rgba(7,7,25,.97);
  box-shadow: 0 -12px 28px rgba(0,0,0,.16);
}

.pfsm-attach {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  min-width: 50px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #393750;
  border-radius: 15px;
  background: #0e0e29;
  color: #dbd7e7;
  cursor: pointer;
  line-height: 1;
  transition: border-color .18s ease, background .18s ease;
}

.pfsm-attach:hover { border-color: var(--pfsm-accent); background: #171333; color: #fff; }
.pfsm-attach-plus { font-size: 26px; font-weight: 400; line-height: 1; }
.pfsm-attach-label { font-size: 12px; font-weight: 800; line-height: 1.15; white-space: nowrap; }
.pfsm-text {
  flex: 1;
  width: auto;
  min-height: 50px;
  max-height: 118px;
  margin: 0;
  padding: 13px 16px;
  resize: none;
  border: 2px solid #443265;
  border-radius: 17px;
  outline: 0;
  background: #11102b;
  color: #fff;
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  box-shadow: none;
}

.pfsm-text:focus { border-color: var(--pfsm-accent); box-shadow: 0 0 0 3px rgba(255,43,214,.1); }
.pfsm-text::placeholder { color: #858197; }
.pfsm-send {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--pfsm-accent), #8c24e9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(209,31,190,.23);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

.pfsm-send:hover { transform: translateY(-1px); filter: brightness(1.12); }
.pfsm-send svg { width: 22px; height: 22px; fill: currentColor; }
.pfsm-compose.is-sending { opacity: .62; pointer-events: none; }
.pfsm-status { min-height: 8px; padding: 0 clamp(18px, 7vw, 136px) 7px; background: rgba(7,7,25,.97); color: #a5e2b8; font-size: 11px; text-align: center; }
.pfsm-status:empty { display: none; }
.pfsm-status.is-error { display: block; color: #ff9bac; }
.pfsm-widget .screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 900px) {
  .pfsm-panel,
  .pfsm-widget[data-position="left"] .pfsm-panel { top: 16px; right: auto; bottom: auto; left: 50%; width: calc(100vw - 32px); height: min(780px, calc(100dvh - 16px - max(16px, var(--pfsm-bottom-clearance, 0px)))); }
  .pfsm-intro { padding-right: 28px; padding-left: 28px; }
  .pfsm-messages { padding-right: clamp(16px, 5vw, 46px); padding-left: clamp(16px, 5vw, 46px); }
  .pfsm-compose { padding-right: clamp(14px, 4vw, 38px); padding-left: clamp(14px, 4vw, 38px); }
  .pfsm-preview { margin-right: clamp(14px, 4vw, 38px); margin-left: clamp(14px, 4vw, 38px); }
  .pfsm-upload-progress { margin-right: clamp(14px, 4vw, 38px); margin-left: clamp(14px, 4vw, 38px); }
  .pfsm-status { padding-right: clamp(14px, 4vw, 38px); padding-left: clamp(14px, 4vw, 38px); }
}

@media (max-width: 520px) {
  .pfsm-widget,
  .pfsm-widget[data-position="left"] { right: 12px; bottom: max(12px, var(--pfsm-bottom-clearance, 0px)); left: auto; }
  .pfsm-panel,
  .pfsm-widget[data-position="left"] .pfsm-panel { top: 8px; right: auto; bottom: auto; left: 50%; width: calc(100vw - 16px); height: calc(100dvh - 8px - max(8px, var(--pfsm-bottom-clearance, 0px))); border-radius: 21px; }
  .pfsm-panel::before { right: 12px; left: 12px; width: auto; }
  .pfsm-launcher-label { display: none; }
  .pfsm-launcher { min-width: 62px; padding-right: 8px; padding-left: 8px; }
  .pfsm-header { min-height: 76px; padding: 10px 11px 10px 12px; }
  .pfsm-station-avatar { flex-basis: 46px; height: 46px; border-radius: 14px; font-size: 23px; }
  .pfsm-brand { gap: 10px; }
  .pfsm-brand-kicker { display: none !important; }
  .pfsm-brand-copy strong { max-width: 210px; font-size: 16px; }
  .pfsm-brand-subtitle { font-size: 11px; }
  .pfsm-close { flex-basis: 42px; width: 42px; height: 42px; border-radius: 13px; font-size: 27px; }
  .pfsm-intro,
  .pfsm-chat { height: calc(100% - 76px); }
  .pfsm-intro { padding: 22px 14px 18px; }
  .pfsm-intro-icon { width: 62px; height: 62px; margin-bottom: 12px; border-radius: 19px; }
  .pfsm-intro-icon svg { width: 29px; height: 29px; }
  .pfsm-intro h2 { font-size: 27px; }
  .pfsm-intro-lead { margin: 8px auto 16px; font-size: 14px; }
  .pfsm-intro-form { gap: 10px; padding: 15px; border-radius: 18px; }
  .pfsm-intro input,
  .pfsm-start { height: 52px; min-height: 52px; }
  .pfsm-intro small { margin-top: 12px; }
  .pfsm-messages { padding: 18px 11px 12px; }
  .pfsm-bubble { max-width: 90%; padding: 11px 13px 8px; }
  .pfsm-message-text { font-size: 14px; }
  .pfsm-new-messages { right: 14px; bottom: 80px; }
  .pfsm-preview { margin-right: 10px; margin-left: 10px; }
  .pfsm-upload-progress { margin-right: 10px; margin-left: 10px; padding: 9px 11px 11px; }
  .pfsm-compose { gap: 7px; padding: 10px; }
  .pfsm-attach,
  .pfsm-send { flex-basis: 44px; height: 44px; border-radius: 13px; }
  .pfsm-attach { min-width: 44px; padding: 0; }
  .pfsm-attach-label { display: none; }
  .pfsm-text { min-height: 44px; padding: 10px 12px; border-radius: 15px; }
  .pfsm-status { padding-right: 10px; padding-left: 10px; }
}

@media (max-height: 620px) and (min-width: 521px) {
  .pfsm-panel,
  .pfsm-widget[data-position="left"] .pfsm-panel { top: 12px; right: auto; bottom: auto; left: 50%; height: calc(100dvh - 12px - max(12px, var(--pfsm-bottom-clearance, 0px))); }
  .pfsm-header { min-height: 74px; }
  .pfsm-intro,
  .pfsm-chat { height: calc(100% - 74px); }
  .pfsm-intro { padding-top: 18px; padding-bottom: 18px; }
  .pfsm-intro-icon { width: 58px; height: 58px; margin-bottom: 10px; }
  .pfsm-intro-lead { margin-bottom: 13px; }
  .pfsm-intro-form { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .pfsm-panel,
  .pfsm-backdrop { animation: none; }
  .pfsm-launcher,
  .pfsm-close,
  .pfsm-start,
  .pfsm-send { transition: none; }
  .pfsm-messages { scroll-behavior: auto; }
}
