/* [project]/src/styles/chat-themes.css [app-client] (css) */
.demo-shell {
  background: #fff;
  border-radius: 24px;
  flex-direction: column;
  max-width: 480px;
  height: 80vh;
  max-height: 720px;
  margin: 0 auto;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 70px #5e17eb2e, 0 8px 20px #0000000f;
}

.demo-header {
  border-bottom: 1px solid #0000000f;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.demo-header-avatar {
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
}

.demo-header-info {
  flex: 1;
  min-width: 0;
}

.demo-header-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
}

.demo-header-subtitle {
  opacity: .75;
  margin: 2px 0 0;
  font-size: 12px;
}

.demo-online-dot {
  vertical-align: middle;
  background: #22c55e;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
}

.demo-skip-btn {
  color: #666;
  cursor: pointer;
  background: none;
  border: 1px solid #00000014;
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 12px;
  transition: all .2s;
}

.demo-skip-btn:hover {
  color: #333;
  background: #0000000a;
}

.demo-body {
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 20px;
  display: flex;
  overflow-y: auto;
}

.demo-body::-webkit-scrollbar {
  width: 4px;
}

.demo-body::-webkit-scrollbar-thumb {
  background: #00000026;
  border-radius: 2px;
}

.demo-msg {
  word-wrap: break-word;
  white-space: pre-wrap;
  border-radius: 16px;
  max-width: 80%;
  padding: 10px 14px;
  font-size: 14.5px;
  line-height: 1.45;
  animation: .3s cubic-bezier(.16, 1, .3, 1) msgIn;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.demo-msg-bot {
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.demo-msg-user {
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.demo-msg-time {
  opacity: .6;
  text-align: right;
  margin-top: 4px;
  font-size: 11px;
  display: block;
}

.demo-typing {
  border-radius: 16px 16px 16px 4px;
  align-self: flex-start;
  gap: 4px;
  padding: 12px 16px;
  animation: .3s msgIn;
  display: inline-flex;
}

.demo-typing span {
  background: #00000059;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 1.2s ease-in-out infinite both bounce;
}

.demo-typing span:first-child {
  animation-delay: -.32s;
}

.demo-typing span:nth-child(2) {
  animation-delay: -.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    opacity: .5;
    transform: scale(.6);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.demo-choices {
  background: linear-gradient(#0000, #00000005);
  border-top: 1px solid #0000000a;
  flex-direction: column;
  flex-shrink: 0;
  gap: 8px;
  padding: 12px 20px 20px;
  display: flex;
}

.demo-choice-btn {
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid;
  border-radius: 14px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
  animation: .4s both choiceIn;
}

@keyframes choiceIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

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

.demo-choice-btn:first-child {
  animation-delay: 50ms;
}

.demo-choice-btn:nth-child(2) {
  animation-delay: .1s;
}

.demo-choice-btn:nth-child(3) {
  animation-delay: .15s;
}

.demo-choice-btn:nth-child(4) {
  animation-delay: .2s;
}

.demo-choice-btn:nth-child(5) {
  animation-delay: .25s;
}

.demo-card {
  background: #fff;
  border: 1px solid #5e17eb1f;
  border-radius: 16px;
  align-self: flex-start;
  max-width: 85%;
  padding: 16px;
  animation: .4s msgIn;
  box-shadow: 0 4px 14px #5e17eb14;
}

.demo-card-icon {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
}

.demo-card-title {
  color: #2c3e50;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.demo-card-line {
  color: #4a5568;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 13px;
  display: flex;
}

.demo-card-line:before {
  content: "✓";
  color: #5e17eb;
  flex-shrink: 0;
  font-weight: 700;
}

.demo-card-slot {
  color: #5e17eb;
  background: #5e17eb0f;
  border: 1px solid #5e17eb1f;
  border-radius: 10px;
  margin-top: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.demo-end-overlay {
  background: linear-gradient(#0000 0%, #fffffff2 30%, #fff 50%);
  justify-content: center;
  align-items: flex-end;
  padding: 32px 24px;
  animation: .6s cubic-bezier(.16, 1, .3, 1) endIn;
  display: flex;
  position: absolute;
  inset: 0;
}

@keyframes endIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.demo-end-card {
  text-align: center;
  background: #fff;
  border: 1px solid #5e17eb1a;
  border-radius: 20px;
  width: 100%;
  padding: 28px 24px;
  box-shadow: 0 20px 50px #5e17eb2e;
}

.demo-end-title {
  color: #2c3e50;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.demo-end-subtitle {
  color: #6b7280;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
}

.demo-end-buttons {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.demo-end-btn {
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}

.demo-end-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  box-shadow: 0 6px 16px #5e17eb4d;
}

.demo-end-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px #5e17eb66;
}

.demo-end-btn-secondary {
  color: #5e17eb;
  background: none;
  border: 1.5px solid #5e17eb40;
}

.demo-end-btn-secondary:hover {
  color: #5e17eb;
  background: #5e17eb0d;
}

.theme-web-chat .demo-header {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 100%);
  border-bottom: none;
}

.theme-web-chat .demo-header-avatar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fff3;
}

.theme-web-chat .demo-skip-btn {
  color: #fff;
  background: #ffffff26;
  border-color: #ffffff40;
}

.theme-web-chat .demo-skip-btn:hover {
  color: #fff;
  background: #ffffff40;
}

.theme-web-chat .demo-body {
  background: #f8f9fc;
}

.theme-web-chat .demo-msg-bot {
  color: #2c3e50;
  background: #fff;
  box-shadow: 0 1px 3px #0000000d;
}

.theme-web-chat .demo-msg-user {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
}

.theme-web-chat .demo-typing {
  background: #fff;
  box-shadow: 0 1px 3px #0000000d;
}

.theme-web-chat .demo-choices {
  background: #fff;
  border-top: 1px solid #0000000f;
}

.theme-web-chat .demo-choice-btn {
  color: #5e17eb;
  border-color: #5e17eb33;
}

.theme-web-chat .demo-choice-btn:hover {
  background: #5e17eb0a;
  border-color: #5e17eb;
  transform: translateY(-1px);
}

.theme-whatsapp .demo-header {
  color: #fff;
  background: #075e54;
  border-bottom: none;
}

.theme-whatsapp .demo-header-avatar {
  background: #128c7e;
}

.theme-whatsapp .demo-skip-btn {
  color: #fff;
  background: #ffffff26;
  border-color: #ffffff40;
}

.theme-whatsapp .demo-skip-btn:hover {
  color: #fff;
  background: #ffffff40;
}

.theme-whatsapp .demo-body {
  background: #ece5dd url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.025'%3E%3Cpath d='M20 20a8 8 0 110-16 8 8 0 010 16zm0-2a6 6 0 100-12 6 6 0 000 12z'/%3E%3C/g%3E%3C/svg%3E");
}

.theme-whatsapp .demo-msg-bot {
  color: #303030;
  background: #fff;
  box-shadow: 0 1px 1px #00000021;
}

.theme-whatsapp .demo-msg-user {
  color: #303030;
  background: #dcf8c6;
  box-shadow: 0 1px 1px #00000021;
}

.theme-whatsapp .demo-typing {
  background: #fff;
  box-shadow: 0 1px 1px #00000021;
}

.theme-whatsapp .demo-choices {
  background: #f0f0f0;
}

.theme-whatsapp .demo-choice-btn {
  color: #075e54;
  background: #fff;
  border-color: #0080694d;
}

.theme-whatsapp .demo-choice-btn:hover {
  background: #f0fdf4;
  border-color: #128c7e;
  transform: translateY(-1px);
}

.theme-slack .demo-header {
  color: #fff;
  background: #4a154b;
}

.theme-slack .demo-header-avatar {
  color: #4a154b;
  background: #ecb22e;
}

.theme-slack .demo-skip-btn {
  color: #fff;
  background: #ffffff26;
  border-color: #ffffff40;
}

.theme-slack .demo-body {
  background: #fff;
}

.theme-slack .demo-msg-bot, .theme-slack .demo-msg-user {
  background: none;
  border: none;
  border-radius: 0;
  max-width: 100%;
  padding: 6px 0;
}

.theme-slack .demo-msg-bot:before {
  content: "Mukh Bot · ";
  color: #1d1c1d;
  font-weight: 700;
}

.theme-slack .demo-msg-user:before {
  content: "You · ";
  color: #1d1c1d;
  font-weight: 700;
}

.theme-slack .demo-typing {
  background: #f8f8f8;
  border: 1px solid #e1e1e1;
}

.theme-slack .demo-choices {
  background: #f8f8f8;
}

.theme-slack .demo-choice-btn {
  color: #1d9bd1;
  border-color: #1d9bd1;
}

.theme-slack .demo-choice-btn:hover {
  color: #007a5a;
  background: #f0f9ff;
  border-color: #007a5a;
  transform: translateY(-1px);
}

.theme-teams .demo-header {
  color: #fff;
  background: #464eb8;
}

.theme-teams .demo-header-avatar {
  background: #5b5fc7;
}

.theme-teams .demo-skip-btn {
  color: #fff;
  background: #ffffff26;
  border-color: #ffffff40;
}

.theme-teams .demo-body {
  background: #f5f5f5;
}

.theme-teams .demo-msg-bot {
  color: #252423;
  background: #fff;
  border: 1px solid #e1dfdd;
}

.theme-teams .demo-msg-user {
  color: #252423;
  background: #e8ebfa;
}

.theme-teams .demo-typing {
  background: #fff;
  border: 1px solid #e1dfdd;
}

.theme-teams .demo-choices {
  background: #fff;
}

.theme-teams .demo-choice-btn {
  color: #464eb8;
  border-color: #464eb8;
}

.theme-teams .demo-choice-btn:hover {
  background: #f4f5fc;
  transform: translateY(-1px);
}

.theme-phone-transcript .demo-header {
  color: #fff;
  background: #1a1a1a;
}

.theme-phone-transcript .demo-body {
  color: #e5e5e5;
  background: #0d0d0d;
}

.theme-phone-transcript .demo-msg-bot {
  color: #d8b4fe;
  background: #5e17eb26;
  border: 1px solid #5e17eb4d;
}

.theme-phone-transcript .demo-msg-user {
  color: #e5e5e5;
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
}

.theme-phone-transcript .demo-msg-bot:before {
  content: "🤖 AI · ";
  font-weight: 600;
}

.theme-phone-transcript .demo-msg-user:before {
  content: "📞 Caller · ";
  font-weight: 600;
}

.theme-phone-transcript .demo-typing {
  background: #5e17eb26;
  border: 1px solid #5e17eb4d;
}

.theme-phone-transcript .demo-typing span {
  background: #d8b4fe;
}

.theme-phone-transcript .demo-choices {
  background: #1a1a1a;
  border-top-color: #ffffff0f;
}

.theme-phone-transcript .demo-choice-btn {
  color: #e5e5e5;
  background: none;
  border-color: #fff3;
}

.theme-phone-transcript .demo-choice-btn:hover {
  color: #fff;
  background: #ffffff0d;
  border-color: #d8b4fe;
}

.demo-page {
  background: linear-gradient(#f7f3ff 0%, #fff 100%);
  min-height: 100vh;
  padding: 100px 20px 60px;
}

.demo-page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.demo-page-header h1 {
  color: #2c3e50;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
}

.demo-page-header p {
  color: #6b7280;
  margin: 0;
  font-size: 16px;
}

.demo-shell-wrapper {
  position: relative;
}

@media (max-width: 540px) {
  .demo-shell {
    border-radius: 16px;
    height: calc(100vh - 140px);
    max-height: none;
  }

  .demo-page {
    padding: 90px 12px 30px;
  }

  .demo-page-header h1 {
    font-size: 24px;
  }
}

.theme-linkedin .demo-header {
  color: #fff;
  background: linear-gradient(#0a66c2, #084d94);
}

.theme-linkedin .demo-header-avatar {
  color: #0a66c2;
  background: #fff;
}

.theme-linkedin .demo-skip-btn {
  color: #fff;
  background: #ffffff26;
  border-color: #ffffff40;
}

.theme-linkedin .demo-skip-btn:hover {
  color: #fff;
  background: #ffffff40;
}

.theme-linkedin .demo-body {
  background: #f3f6f8;
}

.theme-linkedin .demo-msg-bot {
  color: #1a1f36;
  background: #fff;
  box-shadow: 0 1px 2px #0000000f;
}

.theme-linkedin .demo-msg-user {
  color: #fff;
  background: #0a66c2;
}

.theme-linkedin .demo-typing {
  background: #fff;
  box-shadow: 0 1px 2px #0000000f;
}

.theme-linkedin .demo-choices {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.theme-linkedin .demo-choice-btn {
  color: #0a66c2;
  border-color: #0a66c2;
}

.theme-linkedin .demo-choice-btn:hover {
  background: #eff6ff;
  transform: translateY(-1px);
}

.theme-instagram .demo-header {
  color: #262626;
  background: #fff;
  border-bottom: 1px solid #efefef;
}

.theme-instagram .demo-header-avatar {
  color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.theme-instagram .demo-skip-btn {
  color: #262626;
  background: #0000000a;
  border-color: #00000014;
}

.theme-instagram .demo-body {
  background: #fff;
}

.theme-instagram .demo-msg-bot {
  color: #262626;
  background: #efefef;
}

.theme-instagram .demo-msg-user {
  color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}

.theme-instagram .demo-typing {
  background: #efefef;
}

.theme-instagram .demo-choices {
  background: #fff;
  border-top: 1px solid #efefef;
}

.theme-instagram .demo-choice-btn {
  color: #dc2743;
  border-color: #dc2743;
}

.theme-instagram .demo-choice-btn:hover {
  background: #fff5f7;
  transform: translateY(-1px);
}

.rd-channel-tabs {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  gap: 6px;
  padding: 12px;
  display: flex;
  overflow-x: auto;
}

.rd-channel-tab {
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.rd-channel-tab:hover {
  color: #5e17eb;
  border-color: #5e17eb;
}

.rd-channel-tab.rd-active {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-color: #0000;
}

.rd-channel-tab i {
  font-size: 14px;
}

/* [project]/src/styles/rich-demo.css [app-client] (css) */
.rd-page {
  color: #1a1f36;
  background: #fafbfc;
  overflow-x: hidden;
}

.rd-hero {
  color: #fff;
  background: radial-gradient(at 100% 0, #cf006726, #0000 60%), radial-gradient(at 0 100%, #5e17eb26, #0000 60%), linear-gradient(#0d0a1f 0%, #1a0f3d 100%);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.rd-hero:before {
  content: "";
  pointer-events: none;
  background-image: linear-gradient(#ffffff08 1px, #0000 1px), linear-gradient(90deg, #ffffff08 1px, #0000 1px);
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
}

.rd-hero-inner {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.rd-hero-tag {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  letter-spacing: .5px;
  color: #d8b4fe;
  background: #ffffff14;
  border: 1px solid #ffffff1f;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.rd-hero-tag:before {
  content: "";
  background: #34d399;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite rd-pulse;
  box-shadow: 0 0 12px #34d399;
}

@keyframes rd-pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.rd-hero h1 {
  letter-spacing: -.02em;
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

.rd-hero h1 .rd-grad {
  background: linear-gradient(135deg, #d8b4fe 0%, #fb7185 50%, #fbbf24 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.rd-hero-sub {
  opacity: .85;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

.rd-hero-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 56px;
  display: grid;
}

.rd-hero-stat {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  padding: 24px 16px;
}

.rd-hero-stat-num {
  background: linear-gradient(135deg, #fff, #d8b4fe);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.rd-hero-stat-lbl {
  opacity: .7;
  letter-spacing: .3px;
  margin-top: 8px;
  font-size: 13px;
}

.rd-hero-cta {
  color: #5e17eb;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 100px;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s;
  display: inline-flex;
  box-shadow: 0 12px 32px #ffffff26;
}

.rd-hero-cta:hover {
  color: #5e17eb;
  transform: translateY(-2px);
}

.rd-scroll-cue {
  opacity: .5;
  letter-spacing: 1px;
  font-size: 12px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.rd-scroll-cue:after {
  content: "↓";
  margin-top: 6px;
  font-size: 24px;
  animation: 2s infinite rd-bounce;
  display: block;
}

@keyframes rd-bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.rd-problem {
  background: #fff;
  padding: 100px 24px;
}

.rd-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.rd-section-head h2 {
  color: #0d0a1f;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

.rd-section-head p {
  color: #5b6479;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.rd-versus {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

.rd-versus-card {
  border: 1px solid;
  border-radius: 20px;
  padding: 32px;
}

.rd-versus-card-bad {
  background: linear-gradient(#fff1f2, #fff);
  border-color: #fecdd3;
}

.rd-versus-card-good {
  background: linear-gradient(#f0fdf4, #fff);
  border-color: #bbf7d0;
}

.rd-versus-label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
}

.rd-versus-card-bad .rd-versus-label {
  color: #be123c;
}

.rd-versus-card-good .rd-versus-label {
  color: #15803d;
}

.rd-versus-card h3 {
  color: #0d0a1f;
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
}

.rd-versus-list {
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.rd-versus-list li {
  color: #374151;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
}

.rd-versus-list li:before {
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.rd-versus-card-bad .rd-versus-list li:before {
  content: "✕";
  color: #be123c;
  background: #fecdd3;
}

.rd-versus-card-good .rd-versus-list li:before {
  content: "✓";
  color: #15803d;
  background: #bbf7d0;
}

.rd-versus-arrow {
  color: #5e17eb;
  font-size: 32px;
  font-weight: 800;
}

.rd-stages {
  background: linear-gradient(#fafbfc, #fff);
  padding: 100px 24px;
  position: relative;
}

.rd-stages-line {
  opacity: .2;
  background: linear-gradient(#5e17eb, #cf0067, #ff6100);
  width: 2px;
  position: absolute;
  top: 100px;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.rd-stage {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 100px;
  display: grid;
  position: relative;
}

.rd-stage:nth-child(2n) .rd-stage-info {
  order: 2;
}

.rd-stage:nth-child(2n) .rd-stage-visual {
  order: 1;
}

.rd-stage-info {
  padding: 24px;
}

.rd-stage-num {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 800;
  display: inline-flex;
  box-shadow: 0 12px 32px #5e17eb4d;
}

.rd-stage-tag {
  color: #5e17eb;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #5e17eb1a;
  border-radius: 100px;
  margin-bottom: 16px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.rd-stage-info h3 {
  color: #0d0a1f;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
}

.rd-stage-info p {
  color: #5b6479;
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.6;
}

.rd-stage-bullets {
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.rd-stage-bullets li {
  color: #374151;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  display: flex;
}

.rd-stage-bullets li:before {
  content: "✓";
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.rd-stage-meta {
  color: #6b7280;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  display: flex;
}

.rd-stage-meta span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.rd-stage-visual {
  position: relative;
}

.rd-frame {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px #5e17eb26, 0 16px 32px -8px #00000014;
}

.rd-frame-bar {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  display: flex;
}

.rd-frame-dot {
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.rd-frame-dot:first-child {
  background: #ef4444;
}

.rd-frame-dot:nth-child(2) {
  background: #f59e0b;
}

.rd-frame-dot:nth-child(3) {
  background: #10b981;
}

.rd-frame-url {
  color: #6b7280;
  background: #fff;
  border-radius: 8px;
  flex: 1;
  margin-left: 8px;
  padding: 6px 12px;
  font-family: SF Mono, Consolas, monospace;
  font-size: 12px;
}

.rd-form-mock {
  background: #fff;
  padding: 32px;
}

.rd-form-mock h4 {
  color: #0d0a1f;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.rd-form-mock-sub {
  color: #6b7280;
  margin: 0 0 24px;
  font-size: 14px;
}

.rd-form-field {
  margin-bottom: 16px;
}

.rd-form-label {
  color: #374151;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}

.rd-form-input {
  color: #0d0a1f;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  align-items: center;
  height: 44px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rd-form-input.rd-typing:after {
  content: "|";
  margin-left: 2px;
  animation: 1s infinite rd-blink;
}

@keyframes rd-blink {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

.rd-form-input.rd-filled {
  background: #fff;
  border-color: #5e17eb;
}

.rd-form-submit {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.rd-form-submit.rd-pressed {
  transform: scale(.98);
}

.rd-form-stamp {
  color: #065f46;
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
  border: 1px solid #6ee7b7;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 13.5px;
  animation: .4s rd-stamp-in;
  display: flex;
}

@keyframes rd-stamp-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.rd-form-stamp i {
  color: #10b981;
  font-size: 18px;
}

.rd-cal {
  background: #fff;
  padding: 28px;
}

.rd-cal h4 {
  color: #0d0a1f;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}

.rd-cal-sub {
  color: #6b7280;
  margin: 0 0 20px;
  font-size: 13px;
}

.rd-cal-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  display: grid;
}

.rd-cal-day {
  text-align: center;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 600;
}

.rd-cal-slot {
  text-align: center;
  color: #374151;
  cursor: pointer;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.rd-cal-slot:hover {
  color: #5e17eb;
  background: #faf5ff;
  border-color: #5e17eb;
}

.rd-cal-slot.rd-selected {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-color: #0000;
  transform: scale(1.05);
}

.rd-cal-confirm {
  color: #065f46;
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
  border: 1px solid #6ee7b7;
  border-radius: 12px;
  margin-top: 16px;
  padding: 16px;
  font-size: 14px;
  animation: .4s rd-stamp-in;
}

.rd-cal-confirm strong {
  color: #064e3b;
  margin-bottom: 4px;
  font-size: 15px;
  display: block;
}

.rd-slack {
  background: #fff;
  font-family: Lato, -apple-system, sans-serif;
}

.rd-slack-bar {
  color: #fff;
  background: #350d36;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.rd-slack-bar i {
  color: #ecb22e;
}

.rd-slack-body {
  padding: 20px;
}

.rd-slack-msg {
  gap: 12px;
  display: flex;
}

.rd-slack-avatar {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
}

.rd-slack-name {
  color: #1d1c1d;
  margin-right: 8px;
  font-size: 14.5px;
  font-weight: 700;
}

.rd-slack-time {
  color: #616061;
  font-size: 12px;
}

.rd-slack-text {
  color: #1d1c1d;
  margin-top: 4px;
  font-size: 14.5px;
  line-height: 1.5;
}

.rd-slack-card {
  background: #f8f8f8;
  border-left: 3px solid #5e17eb;
  border-radius: 4px;
  margin-top: 10px;
  padding: 14px 16px;
}

.rd-slack-card-title {
  color: #1d1c1d;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.rd-slack-row {
  margin-bottom: 6px;
  font-size: 13.5px;
  display: flex;
}

.rd-slack-row-key {
  color: #616061;
  flex-shrink: 0;
  width: 110px;
}

.rd-slack-row-val {
  color: #1d1c1d;
  font-weight: 500;
}

.rd-crm {
  background: #fff;
  padding: 24px;
}

.rd-crm-head {
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  display: flex;
}

.rd-crm-avatar {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.rd-crm-head-info h5 {
  color: #0d0a1f;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.rd-crm-head-info p {
  color: #6b7280;
  margin: 2px 0 0;
  font-size: 13px;
}

.rd-crm-tag {
  color: #065f46;
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
  border: 1px solid #6ee7b7;
  border-radius: 100px;
  margin-left: auto;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
}

.rd-crm-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  display: grid;
}

.rd-crm-cell {
  background: #f9fafb;
  border-radius: 10px;
  padding: 12px 14px;
}

.rd-crm-cell-lbl {
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: .5px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
}

.rd-crm-cell-val {
  color: #0d0a1f;
  font-size: 14px;
  font-weight: 600;
}

.rd-crm-activity {
  background: #f9fafb;
  border-left: 3px solid #5e17eb;
  border-radius: 10px;
  padding: 14px 16px;
}

.rd-crm-activity-title {
  color: #5e17eb;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.rd-crm-activity-item {
  color: #374151;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 13.5px;
  display: flex;
}

.rd-crm-activity-item:before {
  content: "•";
  color: #5e17eb;
  font-weight: 700;
}

.rd-metrics {
  color: #fff;
  background: linear-gradient(135deg, #0d0a1f 0%, #1a0f3d 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.rd-metrics:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 20%, #5e17eb4d, #0000 50%), radial-gradient(circle at 80%, #cf00674d, #0000 50%);
  position: absolute;
  inset: 0;
}

.rd-metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.rd-metrics .rd-section-head h2 {
  color: #fff;
}

.rd-metrics .rd-section-head p {
  color: #ffffffb3;
}

.rd-metrics-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

.rd-metric {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 20px;
  padding: 32px 24px;
}

.rd-metric-num {
  background: linear-gradient(135deg, #fff, #d8b4fe);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 12px;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.rd-metric-lbl {
  color: #ffffffd9;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.rd-metric-sub {
  color: #ffffff8c;
  font-size: 12px;
}

.rd-integrations {
  text-align: center;
  background: #fff;
  padding: 80px 24px;
}

.rd-integrations h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 700;
}

.rd-integrations-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
}

.rd-integration-pill {
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.rd-integration-pill:hover {
  color: #5e17eb;
  background: #fff;
  border-color: #5e17eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #5e17eb1a;
}

.rd-integration-pill i {
  color: #5e17eb;
  font-size: 16px;
}

.rd-final-cta {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #5e17eb 0%, #cf0067 50%, #ff6100 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.rd-final-cta:before {
  content: "";
  background-image: linear-gradient(#ffffff0d 1px, #0000 1px), linear-gradient(90deg, #ffffff0d 1px, #0000 1px);
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
}

.rd-final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.rd-final-cta h2 {
  letter-spacing: -.01em;
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
}

.rd-final-cta p {
  opacity: .9;
  margin: 0 0 36px;
  font-size: 18px;
}

.rd-final-cta-btns {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  display: flex;
}

.rd-final-cta-btn {
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
}

.rd-final-cta-btn-primary {
  color: #5e17eb;
  background: #fff;
  box-shadow: 0 12px 32px #00000026;
}

.rd-final-cta-btn-primary:hover {
  color: #5e17eb;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px #0003;
}

.rd-final-cta-btn-secondary {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  background: #ffffff26;
  border: 1px solid #ffffff4d;
}

.rd-final-cta-btn-secondary:hover {
  color: #fff;
  background: #ffffff40;
}

.rd-reveal {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(30px);
}

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

@media (max-width: 768px) {
  .rd-versus {
    grid-template-columns: 1fr;
  }

  .rd-versus-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .rd-stage {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }

  .rd-stage:nth-child(2n) .rd-stage-info {
    order: 1;
  }

  .rd-stage:nth-child(2n) .rd-stage-visual {
    order: 2;
  }

  .rd-stages-line {
    display: none;
  }

  .rd-hero-stats {
    grid-template-columns: 1fr;
  }

  .rd-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rd-hero, .rd-problem, .rd-stages, .rd-metrics, .rd-final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.rd-search {
  background: #fff;
  padding: 24px;
}

.rd-search-row {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 12px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
}

.rd-search-row.rd-active {
  background: #fff;
  border-color: #5e17eb;
  box-shadow: 0 0 0 3px #5e17eb14;
}

.rd-search-icon {
  color: #6b7280;
  flex-shrink: 0;
  width: 16px;
  font-size: 14px;
}

.rd-search-key {
  color: #6b7280;
  flex-shrink: 0;
  width: 80px;
  font-weight: 600;
}

.rd-search-val {
  color: #0d0a1f;
  flex: 1;
  font-weight: 500;
}

.rd-search-val.rd-typing:after {
  content: "|";
  margin-left: 2px;
  animation: 1s infinite rd-blink;
}

.rd-search-result {
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
  border: 1px solid #c4b5fd;
  border-radius: 12px;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  animation: .4s rd-stamp-in;
  display: flex;
}

.rd-search-result-num {
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.rd-search-result-text {
  color: #4c1d95;
  font-size: 13.5px;
  font-weight: 500;
}

.rd-prospects {
  background: #fff;
  max-height: 540px;
  padding: 20px;
  overflow: hidden;
}

.rd-prospects-head {
  color: #6b7280;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.rd-prospects-head:before {
  content: "";
  background: #10b981;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite rd-pulse;
}

.rd-prospect {
  opacity: 0;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  transform: translateX(-20px);
}

.rd-prospect.rd-shown {
  opacity: 1;
  background: linear-gradient(135deg, #faf5ff, #fff);
  border-color: #c4b5fd;
  transform: translateX(0);
}

.rd-prospect-avatar {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.rd-prospect-body {
  flex: 1;
  min-width: 0;
}

.rd-prospect-row {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  display: flex;
}

.rd-prospect-name {
  color: #0d0a1f;
  font-size: 14px;
  font-weight: 700;
}

.rd-prospect-co {
  color: #6b7280;
  font-size: 12.5px;
}

.rd-prospect-score {
  color: #fff;
  background: linear-gradient(135deg, #5e17eb, #cf0067);
  border-radius: 100px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
}

.rd-prospect-signals {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  display: flex;
}

.rd-prospect-signal {
  color: #4b5563;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
}

.rd-message-tabs {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
}

.rd-message-tab {
  text-align: center;
  color: #6b7280;
  cursor: pointer;
  border-right: 1px solid #e5e7eb;
  flex: 1;
  padding: 12px 14px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all .2s;
}

.rd-message-tab:last-child {
  border-right: none;
}

.rd-message-tab.rd-active {
  color: #5e17eb;
  background: #fff;
  border-bottom: 2px solid #5e17eb;
}

.rd-message-tab-bad {
  color: #be123c !important;
}

.rd-message-body {
  background: #fff;
  padding: 20px;
}

.rd-message-meta {
  color: #6b7280;
  border-bottom: 1px solid #f3f4f6;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  font-size: 12px;
  display: flex;
}

.rd-message-meta strong {
  color: #0d0a1f;
}

.rd-message-text {
  color: #1a1f36;
  white-space: pre-wrap;
  font-size: 14.5px;
  line-height: 1.6;
}

.rd-message-text mark {
  color: #78350f;
  background: #fde68a;
  border-radius: 3px;
  padding: 1px 4px;
  font-weight: 500;
}

.rd-message-bad {
  opacity: .6;
}

.rd-message-bad-stamp {
  color: #991b1b;
  letter-spacing: .5px;
  background: #fee2e2;
  border-radius: 100px;
  margin-bottom: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}

.rd-message-good-stamp {
  color: #065f46;
  letter-spacing: .5px;
  background: #d1fae5;
  border-radius: 100px;
  margin-bottom: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}

.rd-linkedin-bar {
  color: #fff;
  background: linear-gradient(#0a66c2, #084d94);
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  display: flex;
}

.rd-linkedin-bar .rd-prospect-avatar {
  color: #0a66c2;
  background: #fff;
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.rd-linkedin-bar-name {
  font-size: 14px;
  font-weight: 600;
}

.rd-linkedin-bar-sub {
  opacity: .85;
  font-size: 11px;
}

.rd-linkedin-body {
  background: #f3f6f8;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  display: flex;
}

.rd-linkedin-msg {
  border-radius: 14px;
  max-width: 80%;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  animation: .3s msgIn;
}

.rd-linkedin-msg-out {
  color: #fff;
  background: #0a66c2;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.rd-linkedin-msg-in {
  color: #1a1f36;
  background: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 2px #0000000f;
}

.rd-linkedin-time {
  opacity: .7;
  text-align: center;
  margin: 4px 0;
  font-size: 10.5px;
}

.rd-linkedin-cal {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  align-self: flex-start;
  max-width: 80%;
  padding: 12px;
  font-size: 13px;
}

.rd-linkedin-cal-head {
  color: #1a1f36;
  margin-bottom: 8px;
  font-weight: 600;
}

.rd-linkedin-cal-slots {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.rd-linkedin-cal-slot {
  color: #1e40af;
  background: #eff6ff;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
}

.rd-handoff {
  background: #fff;
  padding: 20px;
}

.rd-handoff-banner {
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
  border: 1px solid #6ee7b7;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 16px;
  display: flex;
}

.rd-handoff-banner i {
  color: #059669;
  flex-shrink: 0;
  font-size: 24px;
}

.rd-handoff-banner strong {
  color: #064e3b;
  margin-bottom: 2px;
  font-size: 14.5px;
  display: block;
}

.rd-handoff-banner div {
  color: #047857;
  font-size: 13px;
}

.rd-handoff-card {
  background: #f9fafb;
  border-left: 3px solid #5e17eb;
  border-radius: 12px;
  padding: 16px;
}

.rd-handoff-card-title {
  color: #5e17eb;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.rd-handoff-row {
  color: #374151;
  padding: 4px 0;
  font-size: 13px;
  display: flex;
}

.rd-handoff-row-key {
  color: #6b7280;
  flex-shrink: 0;
  width: 100px;
}

.rd-handoff-row-val {
  color: #0d0a1f;
  font-weight: 500;
}

/*# sourceMappingURL=src_styles_0.kfuqo._.css.map*/