:root {
  --text: #0f172a;
  --secondary: #475569;
  --muted: #64748b;
  --background: #f7f9fc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --soft-border: #eef2f7;
  --blue: #2563eb;
  --purple: #7c3aed;
  --navy: #0b1220;
  --green: #22c55e;
  --soft-green: #dcfce7;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.14), 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 44px rgba(15, 23, 42, 0.11), 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 75% 25%, rgba(37, 99, 235, 0.14), transparent 34%),
    radial-gradient(circle at 90% 70%, rgba(34, 197, 94, 0.12), transparent 30%),
    var(--background);
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

.hero-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(640px, 1.1fr);
  gap: clamp(30px, 3.2vw, 42px);
  align-items: center;
  width: min(100% - 48px, 1240px);
  min-height: 760px;
  margin: 0 auto;
  padding: 78px 0 76px;
}

.hero-copy {
  min-width: 0;
  max-width: 640px;
  animation: rise-in 420ms ease-out both;
}

h1 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.5rem, 4.05vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.01;
}

.subheadline {
  max-width: 455px;
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--blue);
  color: #1e293b;
  font-size: clamp(1.38rem, 1.75vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
}

.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.26);
  outline-offset: 3px;
}

.btn-primary {
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-secondary {
  gap: 8px;
  padding: 0 24px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #cbd5e1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
}

.btn-secondary:hover {
  border-color: #94a3b8;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.icon,
.chip-icon,
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

svg path,
svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn .icon {
  width: 16px;
  height: 16px;
}

.btn .icon svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
}

.chip-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 480px);
  margin-top: 22px;
}

.chip-row {
  display: contents;
}

.chip-row + .chip-row {
  margin-top: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 9px 12px;
  border-radius: 18px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: normal;
}

.chip-reassurance {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.chip-capability {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.06);
}

.chip-icon {
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 10px;
  background: #f8fafc;
}

.check-icon {
  color: var(--green);
  background: var(--soft-green);
}

.blue-icon {
  color: var(--blue);
  background: #dbeafe;
}

.purple-icon {
  color: var(--purple);
  background: #ede9fe;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 660px;
  animation: rise-in 520ms 90ms ease-out both;
}

.visual-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.82;
}

.visual-glow-blue {
  inset: 12px 20px auto auto;
  width: 440px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 68%);
}

.visual-glow-green {
  right: -42px;
  bottom: 52px;
  width: 360px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12), transparent 66%);
}

.personal-card,
.workspace-window,
.phone-mockup {
  position: absolute;
}

.personal-card {
  z-index: 5;
  width: 204px;
  padding: 13px 14px 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  color: var(--text);
  backdrop-filter: blur(10px);
  animation: drift 6s ease-in-out infinite;
}

.personal-card-header {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.personal-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.personal-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.24;
}

.personal-card p {
  margin: 7px 0 0;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
}

.personal-card-one {
  top: 18px;
  left: 8px;
  transform: rotate(-3deg);
}

.personal-card-two {
  top: 248px;
  left: -126px;
  transform: rotate(3deg);
  animation-delay: 400ms;
}

.personal-card-three {
  left: 22px;
  bottom: 6px;
  transform: rotate(-2deg);
  animation-delay: 700ms;
}

.personal-card-four {
  top: 6px;
  right: 28px;
  transform: rotate(2deg);
  animation-delay: 520ms;
}

.personal-card-five {
  top: 104px;
  right: -48px;
  transform: rotate(-2deg);
  animation-delay: 860ms;
}

.workspace-window {
  z-index: 4;
  top: 86px;
  right: 0;
  width: min(104%, 700px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.workspace-window * {
  min-width: 0;
}

.window-chrome {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--soft-border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.chrome-dots {
  display: flex;
  gap: 7px;
}

.chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.chrome-dots span:first-child {
  background: #fca5a5;
}

.chrome-dots span:nth-child(2) {
  background: #fcd34d;
}

.chrome-dots span:nth-child(3) {
  background: #86efac;
}

.workspace-label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.connected-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 700;
}

.connected-label span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 126px 166px minmax(210px, 1fr) 154px;
  min-height: 438px;
  background: #ffffff;
}

.sidebar,
.conversation-list,
.active-panel,
.details-panel {
  min-width: 0;
  border-right: 1px solid var(--soft-border);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 10px;
  background: #fbfdff;
}

.workspace-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f62ff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
}

.workspace-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-list {
  display: grid;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  overflow: hidden;
  padding: 0 7px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-item.active {
  color: var(--blue);
  background: #eff6ff;
}

.nav-icon {
  width: 14px;
  height: 14px;
}

.connected-lines {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 9px;
  border: 1px solid var(--soft-border);
  border-radius: 14px;
  background: #ffffff;
}

.connected-heading {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.connected-lines div {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 14px;
  overflow: hidden;
  color: #334155;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.connected-lines div span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.conversation-list {
  padding: 14px 10px;
  background: #ffffff;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
}

.panel-head span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.panel-head strong {
  color: var(--blue);
  font-size: 0.75rem;
}

.conversation-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-areas:
    "avatar copy"
    "avatar meta";
  align-items: center;
  gap: 4px 8px;
  padding: 9px 7px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
}

.conversation-row + .conversation-row {
  margin-top: 5px;
}

.conversation-row.selected {
  border-color: #dbeafe;
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.06);
}

.avatar,
.agent-avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  font-weight: 800;
}

.avatar {
  grid-area: avatar;
  width: 30px;
  height: 30px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.76rem;
}

.conversation-copy {
  grid-area: copy;
  min-width: 0;
}

.conversation-copy strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 0.74rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conversation-copy p {
  overflow: hidden;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge {
  grid-area: meta;
  justify-self: start;
  max-width: 84px;
  min-height: 18px;
  overflow: hidden;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge-assigned {
  color: #1d4ed8;
  background: #dbeafe;
}

.badge-waiting {
  color: #b45309;
  background: #fef3c7;
}

.badge-new {
  color: #15803d;
  background: #dcfce7;
}

.badge-resolved {
  color: #475569;
  background: #f1f5f9;
}

.conversation-row .agent-avatar {
  grid-area: meta;
  justify-self: end;
}

.agent-avatar {
  width: 21px;
  height: 21px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  font-size: 0.62rem;
}

.active-panel {
  display: flex;
  flex-direction: column;
  background: #fbfdff;
}

.thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--soft-border);
}

.thread-head > div {
  min-width: 0;
}

.thread-head span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.thread-head strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--text);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assigned-pill {
  flex: 0 0 auto;
  max-width: 112px;
  overflow: hidden;
  padding: 5px 8px;
  border-radius: 999px;
  color: #1d4ed8 !important;
  background: #dbeafe;
  font-size: 0.62rem !important;
  font-weight: 800 !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-body {
  display: grid;
  gap: 9px;
  padding: 16px 14px;
}

.message-bubble {
  max-width: 82%;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 9px 11px;
  border-radius: 14px;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.36;
}

.customer-message {
  justify-self: start;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border);
}

.agent-message {
  justify-self: end;
  color: #14532d;
  background: var(--soft-green);
  border: 1px solid #bbf7d0;
}

.internal-note {
  max-width: 100%;
  overflow: hidden;
  padding: 10px 11px;
  border: 1px solid #fde68a;
  border-radius: 14px;
  background: #fffbeb;
}

.internal-note span {
  color: #b45309;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.internal-note p {
  margin: 4px 0 0;
  color: #6b4e16;
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.assignment-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  max-width: 100%;
  overflow: hidden;
  color: #334155;
  font-size: 0.68rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reply-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: auto 14px 14px;
  min-height: 38px;
  padding: 0 6px 0 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #94a3b8;
  background: #ffffff;
  font-size: 0.64rem;
  font-weight: 600;
}

.reply-field span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reply-field button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
}

.reply-field svg {
  width: 14px;
  height: 14px;
}

.details-panel {
  padding: 14px 12px;
  border-right: 0;
  background: #ffffff;
}

.profile-card {
  display: grid;
  justify-items: center;
  padding: 13px 8px;
  border: 1px solid var(--soft-border);
  border-radius: 16px;
  background: #fbfdff;
  text-align: center;
}

.avatar.large {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}

.profile-card strong {
  margin-top: 9px;
  color: var(--text);
  font-size: 0.72rem;
}

.profile-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
}

.detail-stack {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.detail-stack div {
  padding: 9px 0;
  border-bottom: 1px solid var(--soft-border);
}

.detail-stack span {
  display: block;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
}

.detail-stack strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.68rem;
  line-height: 1.26;
}

.phone-mockup {
  z-index: 9;
  right: -50px;
  bottom: -22px;
  width: 186px;
  min-height: 372px;
  padding: 8px;
  border-radius: 34px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #0b1220;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.24);
  transform: scale(0.86);
  transform-origin: right bottom;
}

.phone-screen {
  min-height: 354px;
  padding: 9px 8px 12px;
  border-radius: 27px;
  background: #f8fafc;
  overflow: hidden;
}

.phone-status {
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: center;
  min-height: 18px;
  color: var(--text);
  font-size: 0.58rem;
  font-weight: 800;
}

.phone-island {
  justify-self: center;
  width: 56px;
  height: 18px;
  border-radius: 999px;
  background: #05070d;
}

.phone-system {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: #111827;
}

.phone-system i:first-child {
  width: 12px;
  height: 9px;
  border-left: 3px solid #111827;
  border-right: 3px solid #111827;
  border-bottom: 3px solid #111827;
}

.phone-system i:nth-child(2) {
  width: 12px;
  height: 8px;
  border: 2px solid #111827;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.phone-system strong {
  padding: 1px 4px;
  border-radius: 5px;
  color: #ffffff;
  background: #111827;
  font-size: 0.5rem;
}

.phone-kicker {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.phone-title {
  margin-top: 2px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.phone-tabs,
.phone-actions {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.phone-tabs {
  grid-template-columns: 1fr 0.86fr;
}

.phone-actions {
  grid-template-columns: 0.72fr 1fr;
}

.phone-tab,
.phone-actions span {
  display: grid;
  place-items: center;
  min-height: 24px;
  border: 1px solid #d5dce6;
  border-radius: 8px;
  color: #334155;
  background: #ffffff;
  font-size: 0.58rem;
  font-weight: 800;
}

.phone-tab.active {
  color: #ffffff;
  background: #111827;
  border-color: #111827;
}

.phone-list-card {
  margin-top: 10px;
  padding: 9px 8px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #ffffff;
}

.phone-list-head strong,
.phone-thread strong {
  display: block;
  color: var(--text);
  font-size: 0.66rem;
  line-height: 1.1;
}

.phone-list-head span,
.phone-thread span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 600;
  line-height: 1.2;
}

.phone-search {
  display: flex;
  align-items: center;
  min-height: 28px;
  margin-top: 8px;
  padding: 0 8px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #a0a8b5;
  background: #ffffff;
  font-size: 0.6rem;
  font-weight: 600;
}

.phone-thread {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9px;
  gap: 7px;
  align-items: center;
  min-height: 43px;
  margin-top: 7px;
  padding: 7px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
}

.phone-thread.active {
  border-color: rgba(34, 197, 94, 0.62);
  background: #ecfdf5;
}

.phone-thread em {
  display: block;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: repeating-linear-gradient(to bottom, #64748b 0 3px, transparent 3px 7px);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -5px;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 92px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 80% 16%, rgba(37, 99, 235, 0.12), transparent 38%),
      radial-gradient(circle at 90% 72%, rgba(34, 197, 94, 0.1), transparent 32%),
      var(--background);
  }

  .hero {
    width: min(100% - 32px, 680px);
    padding: 64px 0 56px;
  }

  h1 {
    font-size: clamp(2.125rem, 9vw, 2.5rem);
    line-height: 1.05;
  }

  .subheadline {
    margin-top: 22px;
    font-size: clamp(1.0625rem, 4vw, 1.125rem);
    line-height: 1.52;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .btn {
    width: 100%;
  }

  .chip-area {
    display: none;
  }

  .chip {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.8rem;
  }

  .hero-visual {
    min-height: 410px;
    margin-top: 4px;
  }

  .visual-glow,
  .personal-card,
  .workspace-window {
    display: none;
  }

  .phone-mockup {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(100%, 248px);
    min-height: 409px;
    margin: 0 auto;
    transform: none;
    transform-origin: center;
  }
}

@media (max-width: 420px) {
  .hero {
    width: min(100% - 28px, 390px);
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .chip-row {
    gap: 8px;
  }

  .chip {
    white-space: normal;
  }

  .connected-label {
    display: none;
  }

  .window-chrome {
    grid-template-columns: 66px 1fr;
  }

  .conversation-row {
    grid-template-columns: 28px minmax(0, 1fr);
    padding-left: 5px;
    padding-right: 5px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
