/* Site Chat - circular launcher + dock, quiet luxury award-bar shell */
@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,500;6..72,600&family=Inter:wght@400;500;600&display=swap");

:root {
  /* heywood defaults (quiet luxury) */
  --sc-stone: #f3efe6;
  --sc-stone-2: #ebe5d8;
  --sc-ink: #0c1620;
  --sc-mute: #4a5560;
  --sc-green: #1e4a3c;
  --sc-green-2: #16382e;
  --sc-copper: #b34a1f;
  --sc-on-dark: #f3efe6;
  --sc-glass: rgba(5, 28, 44, 0.92);
  --sc-line: rgba(243, 239, 230, 0.14);
  --sc-radius: 16px;
  --sc-radius-sm: 10px;
  --sc-shadow: 0 18px 50px rgba(5, 16, 28, 0.28);
  --sc-font: Inter, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --sc-display: Newsreader, "Iowan Old Style", Palatino, Georgia, serif;
  --sc-z: 99980;
  --sc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sc-width: min(26.5rem, calc(100vw - 1.25rem));
  --sc-height: min(34rem, calc(100vh - 5.5rem));
  --sc-header-bg:
    radial-gradient(120% 140% at 0% 0%, rgba(179, 74, 31, 0.22), transparent 55%),
    linear-gradient(180deg, #12202c, #051c2c);
  --sc-footer-bg: rgba(250, 247, 240, 0.92);
  --sc-strip-bg: var(--sc-glass);
  --sc-strip-fg: var(--sc-on-dark);
  --sc-strip-sub: rgba(243, 239, 230, 0.62);
  --sc-strip-border: rgba(243, 239, 230, 0.2);
  --sc-strip-border-hover: rgba(243, 239, 230, 0.38);
  --sc-launcher-bg: var(--sc-glass);
  --sc-launcher-fg: var(--sc-on-dark);
  --sc-launcher-rim: rgba(243, 239, 230, 0.72);
  --sc-launcher-border: rgba(243, 239, 230, 0.22);
  --sc-launcher-border-hover: rgba(243, 239, 230, 0.42);
  --sc-launcher-h: 3.35rem;
  --sc-launcher-max-w: min(22.5rem, calc(100vw - 1.5rem));
  --sc-mark: #6ecf9b;
  --sc-mark-glow: rgba(110, 207, 155, 0.18);
  --sc-send-bg: var(--sc-green);
  --sc-send-bg-hover: var(--sc-green-2);
  --sc-focus: var(--sc-green);
}

.sc-root {
  all: initial;
  font-family: var(--sc-font);
  color: var(--sc-ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.sc-root *,
.sc-root *::before,
.sc-root *::after {
  box-sizing: border-box;
}

/* Always-visible dock - never a disappearing FAB */
.sc-dock {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: var(--sc-z);
  width: var(--sc-width);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  filter: drop-shadow(var(--sc-shadow));
}

.sc-panel {
  display: flex;
  flex-direction: column;
  height: var(--sc-height);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.55), transparent 42%),
    var(--sc-stone);
  color: var(--sc-ink);
  border: 1px solid var(--sc-stone-2);
  border-radius: var(--sc-radius);
  overflow: hidden;
  transform-origin: 100% 100%;
  animation: sc-rise 0.55s var(--sc-ease) both;
}

.sc-dock.is-min {
  width: auto;
  align-items: flex-end;
  filter: drop-shadow(0 14px 36px rgba(5, 16, 28, 0.22));
}

.sc-dock.is-min .sc-panel {
  display: none;
}

/* Long pill Chat to Max launcher (minimize target) */
.sc-launcher {
  display: none;
  position: relative;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  max-width: var(--sc-launcher-max-w);
  min-height: var(--sc-launcher-h);
  padding: 0.55rem 0.85rem 0.55rem 0.95rem;
  border: 1px solid var(--sc-launcher-border);
  border-radius: 999px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.1), transparent 55%),
    var(--sc-launcher-bg);
  color: var(--sc-launcher-fg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(5, 16, 28, 0.2);
  animation: sc-rise 0.45s var(--sc-ease) both;
  transition:
    border-color 0.25s var(--sc-ease),
    transform 0.25s var(--sc-ease),
    box-shadow 0.25s var(--sc-ease);
}

.sc-dock.is-min .sc-launcher {
  display: inline-flex;
}

.sc-launcher:hover {
  border-color: var(--sc-launcher-border-hover);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 40px rgba(5, 16, 28, 0.26);
}

.sc-launcher:active {
  transform: translateY(0);
}

.sc-launcher:focus-visible {
  outline: 2px solid var(--sc-focus);
  outline-offset: 4px;
}

.sc-launcher-mark {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--sc-mark);
  box-shadow: 0 0 0 3px var(--sc-mark-glow);
  flex-shrink: 0;
  animation: sc-pulse 2.4s ease-in-out infinite;
}

.sc-launcher-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  pointer-events: none;
}

.sc-launcher-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1.05;
}

.sc-launcher-title-pre {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
}

.sc-launcher-title-name {
  font-family: var(--sc-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.sc-launcher-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--sc-launcher-rim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 18rem;
}

.sc-launcher-chev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.15rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--sc-launcher-fg);
  opacity: 0.85;
  pointer-events: none;
}

.sc-launcher-chev svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: currentColor;
}

@media (max-width: 420px) {
  .sc-launcher {
    max-width: calc(100vw - 1.25rem);
    padding: 0.5rem 0.7rem 0.5rem 0.85rem;
    gap: 0.55rem;
  }
  .sc-launcher-title-name {
    font-size: 1.05rem;
  }
  .sc-launcher-sub {
    font-size: 0.62rem;
    max-width: 12.5rem;
    white-space: normal;
  }
  .sc-launcher-chev {
    display: none;
  }
}

.sc-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  background: var(--sc-header-bg);
  color: var(--sc-on-dark);
  border-bottom: 1px solid var(--sc-line);
}

.sc-brand {
  flex: 1;
  min-width: 0;
}

.sc-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.58);
}

.sc-title {
  margin: 0;
  font-family: var(--sc-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.sc-title-balance {
  text-wrap: balance;
}

.sc-header-actions {
  display: flex;
  gap: 0.2rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.sc-icon-btn {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--sc-on-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
  transition: background 0.2s var(--sc-ease), opacity 0.2s var(--sc-ease);
}

.sc-icon-btn:hover,
.sc-icon-btn[aria-pressed="true"] {
  opacity: 1;
  background: rgba(243, 239, 230, 0.1);
}

.sc-icon-btn:focus-visible {
  outline: 2px solid var(--sc-on-dark);
  outline-offset: 1px;
}

.sc-icon-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.sc-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scroll-behavior: smooth;
}

.sc-msg {
  max-width: 92%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  font-size: 0.92rem;
  white-space: pre-wrap;
  word-break: break-word;
  animation: sc-msg-in 0.35s var(--sc-ease) both;
}

.sc-msg--user {
  align-self: flex-end;
  background: var(--sc-ink);
  color: var(--sc-on-dark);
  border-bottom-right-radius: 4px;
}

.sc-msg--assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sc-stone-2);
  border-bottom-left-radius: 4px;
  backdrop-filter: blur(6px);
}

.sc-msg--system {
  align-self: stretch;
  max-width: 100%;
  background: transparent;
  border: none;
  color: var(--sc-mute);
  font-size: 0.82rem;
  text-align: left;
  padding: 0.15rem 0.2rem;
}

.sc-msg--error {
  align-self: stretch;
  max-width: 100%;
  background: #f7e6e0;
  color: #6b2a1a;
  border: 1px solid #e5c4b8;
}

.sc-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 0.28rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--sc-stone-2);
}

.sc-typing i {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--sc-mute);
  display: block;
  animation: sc-dot 1.1s ease-in-out infinite;
}

.sc-typing i:nth-child(2) { animation-delay: 0.15s; }
.sc-typing i:nth-child(3) { animation-delay: 0.3s; }

.sc-footer {
  border-top: 1px solid var(--sc-stone-2);
  background: var(--sc-footer-bg);
  padding: 0.7rem 0.75rem 0.75rem;
}

.sc-compose {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}

.sc-input {
  flex: 1;
  min-height: 2.55rem;
  max-height: 6.5rem;
  resize: none;
  border: 1px solid var(--sc-stone-2);
  border-radius: var(--sc-radius-sm);
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--sc-ink);
  background: #fff;
  transition: border-color 0.2s var(--sc-ease), box-shadow 0.2s var(--sc-ease);
}

.sc-input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--sc-focus);
}

.sc-send,
.sc-mic {
  width: 2.55rem;
  height: 2.55rem;
  border: none;
  border-radius: var(--sc-radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--sc-ease), transform 0.2s var(--sc-ease);
}

.sc-send {
  background: var(--sc-send-bg);
  color: var(--sc-on-dark);
}

.sc-send:hover { background: var(--sc-send-bg-hover); }
.sc-send:active { transform: translateY(1px); }
.sc-send:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.sc-mic {
  background: var(--sc-stone-2);
  color: var(--sc-ink);
}

.sc-mic[aria-pressed="true"] {
  background: var(--sc-copper);
  color: var(--sc-on-dark);
}

.sc-mic:focus-visible,
.sc-send:focus-visible {
  outline: 2px solid var(--sc-focus);
  outline-offset: 2px;
}

.sc-send svg,
.sc-mic svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.sc-hint {
  margin: 0.45rem 0 0;
  font-size: 0.7rem;
  color: var(--sc-mute);
  letter-spacing: 0.01em;
}

@keyframes sc-rise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sc-msg-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sc-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(110, 207, 155, 0.12); }
  50% { box-shadow: 0 0 0 6px rgba(110, 207, 155, 0.2); }
}

@keyframes sc-dot {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}


/* ---- Per-site dock themes (tokens on .sc-root) ---- */
.sc-root.sc-theme-heywood {
  /* defaults from :root - quiet luxury stone/copper/midnight */
}

.sc-root.sc-theme-wolfe {
  --sc-stone: #f7f8fa;
  --sc-stone-2: #e8ebf0;
  --sc-ink: #0f1824;
  --sc-mute: #5a6578;
  --sc-green: #5b8cff;
  --sc-green-2: #3d6fe0;
  --sc-copper: #5b8cff;
  --sc-on-dark: #f7f8fa;
  --sc-glass: rgba(22, 40, 58, 0.94);
  --sc-line: rgba(247, 248, 250, 0.14);
  --sc-shadow: 0 18px 50px rgba(15, 24, 36, 0.28);
  --sc-header-bg:
    radial-gradient(120% 140% at 0% 0%, rgba(91, 140, 255, 0.28), transparent 55%),
    linear-gradient(180deg, #182233, #16283a);
  --sc-footer-bg: rgba(247, 248, 250, 0.94);
  --sc-strip-bg: var(--sc-glass);
  --sc-strip-fg: var(--sc-on-dark);
  --sc-strip-sub: rgba(247, 248, 250, 0.62);
  --sc-strip-border: rgba(44, 58, 79, 0.85);
  --sc-strip-border-hover: rgba(91, 140, 255, 0.45);
  --sc-launcher-bg: var(--sc-glass);
  --sc-launcher-fg: var(--sc-on-dark);
  --sc-launcher-rim: rgba(247, 248, 250, 0.7);
  --sc-launcher-border: rgba(44, 58, 79, 0.85);
  --sc-launcher-border-hover: rgba(91, 140, 255, 0.5);
  --sc-mark: #5b8cff;
  --sc-mark-glow: rgba(91, 140, 255, 0.22);
  --sc-send-bg: #5b8cff;
  --sc-send-bg-hover: #3d6fe0;
  --sc-focus: #5b8cff;
}

.sc-root.sc-theme-turner {
  --sc-stone: #f5f2ec;
  --sc-stone-2: #eae6de;
  --sc-ink: #161513;
  --sc-mute: #6a655c;
  --sc-green: #1e4a3c;
  --sc-green-2: #16382e;
  --sc-copper: #1e4a3c;
  --sc-on-dark: #f5f2ec;
  --sc-glass: rgba(18, 17, 16, 0.92);
  --sc-line: rgba(245, 242, 236, 0.14);
  --sc-shadow: 0 18px 50px rgba(18, 17, 16, 0.26);
  --sc-header-bg:
    radial-gradient(120% 140% at 0% 0%, rgba(30, 74, 60, 0.28), transparent 55%),
    linear-gradient(180deg, #1c1b19, #121110);
  --sc-footer-bg: rgba(245, 242, 236, 0.94);
  --sc-strip-bg: var(--sc-glass);
  --sc-strip-fg: var(--sc-on-dark);
  --sc-strip-sub: rgba(245, 242, 236, 0.58);
  --sc-strip-border: rgba(245, 242, 236, 0.18);
  --sc-strip-border-hover: rgba(245, 242, 236, 0.36);
  --sc-launcher-bg: var(--sc-glass);
  --sc-launcher-fg: var(--sc-on-dark);
  --sc-launcher-rim: rgba(245, 242, 236, 0.68);
  --sc-launcher-border: rgba(245, 242, 236, 0.2);
  --sc-launcher-border-hover: rgba(245, 242, 236, 0.4);
  --sc-mark: #6ecf9b;
  --sc-mark-glow: rgba(110, 207, 155, 0.18);
  --sc-send-bg: #1e4a3c;
  --sc-send-bg-hover: #16382e;
  --sc-focus: #1e4a3c;
}

.sc-root.sc-theme-slipstream {
  --sc-stone: #fbfbfd;
  --sc-stone-2: #e8e8ed;
  --sc-ink: #1d1d1f;
  --sc-mute: #6e6e73;
  --sc-green: #3d7bff;
  --sc-green-2: #5e5ce6;
  --sc-copper: #0ab8ff;
  --sc-on-dark: #ffffff;
  --sc-glass: rgba(251, 251, 253, 0.92);
  --sc-line: rgba(29, 29, 31, 0.08);
  --sc-shadow: 0 18px 50px rgba(29, 29, 31, 0.14);
  --sc-display: Inter, "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --sc-header-bg:
    linear-gradient(180deg, #ffffff, #fbfbfd);
  --sc-footer-bg: rgba(251, 251, 253, 0.96);
  --sc-strip-bg: rgba(255, 255, 255, 0.92);
  --sc-strip-fg: #1d1d1f;
  --sc-strip-sub: #6e6e73;
  --sc-strip-border: #e8e8ed;
  --sc-strip-border-hover: rgba(61, 123, 255, 0.45);
  --sc-launcher-bg: rgba(255, 255, 255, 0.94);
  --sc-launcher-fg: #1d1d1f;
  --sc-launcher-rim: #6e6e73;
  --sc-launcher-border: #e8e8ed;
  --sc-launcher-border-hover: rgba(61, 123, 255, 0.5);
  --sc-mark: linear-gradient(135deg, #0ab8ff, #3d7bff, #5e5ce6);
  --sc-mark-glow: rgba(61, 123, 255, 0.2);
  --sc-send-bg: linear-gradient(135deg, #0ab8ff, #3d7bff 50%, #5e5ce6);
  --sc-send-bg-hover: linear-gradient(135deg, #3d7bff, #5e5ce6);
  --sc-focus: #3d7bff;
}

.sc-root.sc-theme-slipstream .sc-header {
  color: var(--sc-ink);
  border-bottom-color: var(--sc-stone-2);
}

.sc-root.sc-theme-slipstream .sc-eyebrow {
  color: var(--sc-mute);
}

.sc-root.sc-theme-slipstream .sc-icon-btn {
  color: var(--sc-ink);
}

.sc-root.sc-theme-slipstream .sc-icon-btn:hover,
.sc-root.sc-theme-slipstream .sc-icon-btn[aria-pressed="true"] {
  background: rgba(29, 29, 31, 0.06);
}

.sc-root.sc-theme-slipstream .sc-icon-btn:focus-visible {
  outline-color: var(--sc-focus);
}

.sc-root.sc-theme-slipstream .sc-launcher {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 28px rgba(29, 29, 31, 0.1);
}

.sc-root.sc-theme-slipstream .sc-launcher-mark {
  /* Match Heywood Chat-to-Max green pulse on every site */
  background: #6ecf9b;
  box-shadow: 0 0 0 3px rgba(110, 207, 155, 0.18);
}

.sc-root.sc-theme-slipstream .sc-send {
  background: linear-gradient(135deg, #0ab8ff, #3d7bff 50%, #5e5ce6);
  color: #fff;
}

.sc-root.sc-theme-slipstream .sc-send:hover {
  background: linear-gradient(135deg, #3d7bff, #5e5ce6);
}

.sc-root.sc-theme-slipstream .sc-mic[aria-pressed="true"] {
  background: linear-gradient(135deg, #0ab8ff, #5e5ce6);
  color: #fff;
}

.sc-root.sc-theme-slipstream .sc-msg--user {
  background: linear-gradient(135deg, #0ab8ff, #3d7bff 55%, #5e5ce6);
  color: #fff;
}

.sc-root.sc-theme-telnyx-wl {
  /* heywood-adjacent ops desk */
  --sc-stone: #f3efe6;
  --sc-stone-2: #ebe5d8;
  --sc-ink: #0c1620;
  --sc-mute: #4a5560;
  --sc-green: #1e4a3c;
  --sc-green-2: #16382e;
  --sc-copper: #b34a1f;
  --sc-on-dark: #f3efe6;
  --sc-glass: rgba(5, 28, 44, 0.92);
  --sc-line: rgba(243, 239, 230, 0.14);
  --sc-header-bg:
    radial-gradient(120% 140% at 0% 0%, rgba(179, 74, 31, 0.18), transparent 55%),
    linear-gradient(180deg, #12202c, #051c2c);
  --sc-footer-bg: rgba(250, 247, 240, 0.92);
  --sc-strip-bg: var(--sc-glass);
  --sc-strip-fg: var(--sc-on-dark);
  --sc-strip-sub: rgba(243, 239, 230, 0.62);
  --sc-strip-border: rgba(243, 239, 230, 0.2);
  --sc-strip-border-hover: rgba(243, 239, 230, 0.38);
  --sc-launcher-bg: var(--sc-glass);
  --sc-launcher-fg: var(--sc-on-dark);
  --sc-launcher-rim: rgba(243, 239, 230, 0.72);
  --sc-launcher-border: rgba(243, 239, 230, 0.22);
  --sc-launcher-border-hover: rgba(243, 239, 230, 0.42);
  --sc-mark: #6ecf9b;
  --sc-mark-glow: rgba(110, 207, 155, 0.18);
  --sc-send-bg: var(--sc-green);
  --sc-send-bg-hover: var(--sc-green-2);
  --sc-focus: var(--sc-green);
}


/* White-label client accounts: Chat to Max pulse matches dealer brand */
.sc-root.sc-theme-telnyx-wl[data-account="tom-harris"] {
  --sc-green: #1aa0dc;
  --sc-green-2: #1486b8;
  --sc-copper: #4B286D;
  --sc-glass: rgba(12, 22, 48, 0.94);
  --sc-header-bg:
    radial-gradient(120% 140% at 0% 0%, rgba(26, 160, 220, 0.28), transparent 55%),
    linear-gradient(180deg, #1a1040, #0c1630);
  --sc-mark: #1aa0dc;
  --sc-mark-glow: rgba(26, 160, 220, 0.28);
  --sc-send-bg: #1aa0dc;
  --sc-send-bg-hover: #1486b8;
  --sc-focus: #1aa0dc;
  --sc-launcher-border-hover: rgba(26, 160, 220, 0.55);
  --sc-strip-border-hover: rgba(26, 160, 220, 0.5);
}

.sc-root.sc-theme-telnyx-wl[data-account="acquisition-group"] {
  --sc-green: #b84878;
  --sc-green-2: #9a3a62;
  --sc-copper: #b84878;
  --sc-glass: rgba(16, 19, 43, 0.94);
  --sc-header-bg:
    radial-gradient(120% 140% at 0% 0%, rgba(184, 72, 120, 0.3), transparent 55%),
    linear-gradient(180deg, #1c1430, #10132b);
  --sc-mark: #b84878;
  --sc-mark-glow: rgba(184, 72, 120, 0.28);
  --sc-send-bg: #b84878;
  --sc-send-bg-hover: #9a3a62;
  --sc-focus: #b84878;
  --sc-launcher-border-hover: rgba(184, 72, 120, 0.55);
  --sc-strip-border-hover: rgba(184, 72, 120, 0.5);
}

@media (max-width: 480px) {
  .sc-dock {
    right: 0.55rem;
    left: 0.55rem;
    bottom: 0.55rem;
    width: auto;
  }
  .sc-dock.is-min {
    left: auto;
    right: 0.7rem;
    bottom: 0.7rem;
    width: auto;
  }
  .sc-panel {
    height: min(72vh, calc(100vh - 4.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .sc-panel,
  .sc-launcher,
  .sc-msg,
  .sc-launcher-mark,
  .sc-typing i {
    animation: none !important;
  }
  .sc-launcher:hover {
    transform: none;
  }
}
