*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0f0f0f;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.container {
  width: 100%;
  max-width: 480px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 40px 36px;
}

@media (max-width: 520px) {
  .container {
    padding: 28px 20px;
  }
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.logo span {
  color: #6366f1;
}

h1.heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.subheading {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
  min-height: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: #ccc;
}

.field input {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.field input::placeholder {
  color: #555;
}

.field input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.help-text {
  font-size: 12px;
  color: #666;
}

.email-preview {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-label {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.preview-value {
  font-size: 13px;
  font-weight: 500;
  color: #6366f1;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  word-break: break-all;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s, opacity 0.15s;
}

.btn-primary:hover:not(:disabled) {
  background: #5254cc;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 13px;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.error.visible {
  display: block;
}

.success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.success.visible {
  display: block;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 24px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.success h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.success p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
}

.success .inbox-address {
  color: #6366f1;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 14px;
  font-weight: 500;
}

.success .muted {
  font-size: 13px;
  color: #555;
  margin-top: 12px;
}

/* Landing page extras */
.tagline {
  font-size: 15px;
  color: #888;
  margin-bottom: 32px;
}

.landing-link {
  color: #6366f1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.landing-link:hover {
  text-decoration: underline;
}

/* ── Marketing site ─────────────────────────────────────────────────────────── */

body.site {
  display: block;
  padding: 0;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1e1e1e;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-logo span {
  color: #6366f1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links .btn-nav {
  background: #6366f1;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
}

.nav-links .btn-nav:hover {
  background: #5254cc;
  color: #fff;
}

/* Hero */
.hero {
  padding: 96px 32px 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #888;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn-indigo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-indigo:hover {
  background: #5254cc;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #6366f1;
  border: 1px solid #6366f1;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-ghost:hover {
  background: rgba(99, 102, 241, 0.1);
}

.link-muted {
  font-size: 13px;
  color: #666;
}

.link-muted a {
  color: #888;
  text-decoration: underline;
}

.link-muted a:hover {
  color: #aaa;
}

/* Section wrapper */
.section {
  padding: 80px 32px;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
}

.section-heading.has-sub {
  margin-bottom: 10px;
}

.section-subheading {
  font-size: 16px;
  color: #888;
  text-align: center;
  margin-bottom: 48px;
}

/* How it works */
.how-it-works {
  background: #111;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #6366f1;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.step p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}

/* Stats bar */
.stats-bar {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 36px 32px;
}

.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

.stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 96px 32px;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 16px;
  color: #888;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.15s;
}

.package-card:hover {
  border-color: #444;
}

.package-card.featured {
  border-color: #6366f1;
}

.package-card.featured:hover {
  border-color: #818cf8;
}

/* Addon cards */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.addon-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s;
}

.addon-card:hover {
  border-color: #444;
}

.addon-name {
  font-size: 15px;
  font-weight: 700;
  color: #e5e5e5;
}

.addon-price {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.addon-price span {
  font-size: 14px;
  font-weight: 400;
  color: #777;
}

.addon-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

.addons-note {
  text-align: center;
  color: #666;
  font-size: 13px;
  margin-top: 28px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  padding: 3px 10px;
}

.package-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.package-price {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.package-price span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0;
}

.package-renewal {
  font-size: 13px;
  color: #666;
  margin-top: -12px;
}

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feature-list li {
  font-size: 14px;
  color: #aaa;
  display: flex;
  gap: 8px;
  line-height: 1.45;
}

.feature-list li::before {
  content: '✓';
  color: #6366f1;
  font-weight: 700;
  flex-shrink: 0;
}

/* Included with every plan */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.included-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.included-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.included-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.included-item p {
  font-size: 13px;
  color: #777;
  line-height: 1.45;
}

/* FAQ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #1e1e1e;
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid #1e1e1e;
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}

/* Page hero (packages page) */
.page-hero {
  padding: 72px 32px 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.75px;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: #888;
}

/* Footer */
.footer {
  border-top: 1px solid #1e1e1e;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  font-size: 13px;
  color: #555;
}

.footer a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.footer a:hover {
  color: #aaa;
}

.hero-demo-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted, #9ca3af);
}

.hero-demo-text a {
  color: #6366f1;
  text-decoration: none;
}

.hero-explainer {
  font-size: 1rem;
  color: var(--text-muted, #9ca3af);
  max-width: 560px;
  margin: 0.5rem auto 0;
}

.package-email {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-top: -8px;
}

.package-email a {
  color: #6366f1;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links a:not(.btn-nav) {
    display: none;
  }

  .hero {
    padding: 64px 20px 56px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 56px 20px;
  }

  .section-heading {
    font-size: 26px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-bar {
    padding: 32px 20px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 64px 20px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-indigo,
  .btn-ghost {
    justify-content: center;
  }

  .page-hero {
    padding: 48px 20px 32px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
}

/* Footer link group */
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── Privacy page ────────────────────────────────────────────────────────── */

.privacy-page {
  padding: 64px 32px 96px;
}

.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-inner h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 8px;
}

.privacy-meta {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.privacy-inner h2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 12px;
}

.privacy-inner p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 14px;
}

.privacy-inner ul {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-inner ul li {
  font-size: 15px;
  color: #888;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.privacy-inner ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #555;
}

.privacy-inner a {
  color: #6366f1;
  text-decoration: none;
}

.privacy-inner a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 48px 20px 72px;
  }

  .privacy-inner h1 {
    font-size: 28px;
  }
}

/* ── Chat widget ─────────────────────────────────────────────────────────── */

.hero-split {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.hero-split p {
  max-width: none;
  margin: 0 0 24px;
}

.hero-split .hero-explainer {
  margin: 0 0 24px;
}

.hero-split .hero-cta {
  align-items: flex-start;
}

.hero-split .hero-cta .btn-primary {
  width: auto;
}

.hero-split .hero-demo-text {
  margin-top: 0;
}

.chat-widget {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #111;
  border-bottom: 1px solid #2a2a2a;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.chat-messages {
  min-height: 280px;
  max-height: 480px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2px;
}

.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 85%;
}

.chat-message.ax {
  align-self: flex-start;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message-bubble {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.chat-message.ax .chat-message-bubble {
  background: #2a2a2a;
  color: #e5e5e5;
  border-radius: 12px 12px 12px 4px;
}

.chat-message.user .chat-message-bubble {
  background: #6366f1;
  color: #fff;
  border-radius: 12px 12px 4px 12px;
}

.chat-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #818cf8;
  flex-shrink: 0;
  letter-spacing: 0;
}

.chat-typing {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  align-self: flex-start;
}

.chat-typing-dots {
  display: flex;
  gap: 4px;
  background: #2a2a2a;
  padding: 12px 14px;
  border-radius: 12px 12px 12px 4px;
}

.chat-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666;
  animation: typing-bounce 1.4s infinite ease-in-out;
}

.chat-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
}

.chat-input-area {
  border-top: 1px solid #2a2a2a;
  padding: 12px 14px;
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.chat-input::placeholder {
  color: #555;
}

.chat-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.chat-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.chat-send {
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.chat-send:hover:not(:disabled) {
  background: #5254cc;
}

.chat-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.demo-link {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
}

.demo-link a {
  color: #6366f1;
  text-decoration: none;
}

.demo-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-split {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-split .chat-widget-container {
    order: 1;
  }

  .hero-split .hero-content {
    order: 2;
  }

  .hero-split p {
    margin: 0 auto 24px;
  }

  .hero-split .hero-explainer {
    margin: 0 auto 24px;
  }

  .hero-split .hero-cta {
    align-items: center;
  }

  .hero-split .hero-cta .btn-primary {
    width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1000;
  font-size: 0.875rem;
  color: #9ca3af;
}

.cookie-banner a {
  color: #6366f1;
  text-decoration: none;
}

.cookie-accept {
  background: #6366f1;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.875rem;
}

.cookie-accept:hover {
  background: #5254cc;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

.chat-scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 1rem 1rem;
}

.chat-scenario-btn {
  background: #1a1a1a;
  border: 1px solid #6366f1;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-scenario-btn:hover, .chat-scenario-btn:active {
  background: #6366f1;
}
