﻿:root {
  --bg: #f5eefb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1f1430;
  --muted: #645776;
  --primary: #8d44f2;
  --primary-dark: #6529c7;
  --secondary: #ff8fb1;
  --mint: #dff7f1;
  --cream: #fff3d7;
  --border: rgba(124, 76, 195, 0.14);
  --shadow: 0 24px 80px rgba(101, 41, 199, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans Arabic", "Tajawal", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(164, 109, 255, 0.26), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 169, 204, 0.22), transparent 24%),
    linear-gradient(180deg, #a353f4 0%, #ccaef4 16%, #f7f2fb 32%, #fcf9fe 100%);
  color: var(--text);
  overflow-x: hidden;
}

a,
button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
  padding: 18px;
  border-radius: 34px;
}

.ambient {
  position: fixed;
  z-index: -1;
  inset: auto;
  filter: blur(60px);
  opacity: 0.65;
  pointer-events: none;
}

.ambient-one {
  top: 70px;
  left: -20px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 172, 209, 0.65);
  animation: drift 10s ease-in-out infinite;
}

.ambient-two {
  top: 280px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(145, 84, 245, 0.44);
  animation: drift 12s ease-in-out infinite reverse;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(82, 34, 148, 0.08);
  position: sticky;
  top: 14px;
  z-index: 10;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(141, 68, 242, 0.14), rgba(255, 143, 177, 0.16));
  border: 1px solid rgba(107, 60, 171, 0.12);
  box-shadow: 0 14px 30px rgba(92, 43, 162, 0.12);
}

.menu-toggle span {
  position: absolute;
  right: 14px;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #2b1c42;
  transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
}

.menu-toggle span:nth-child(1) {
  top: 18px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle span:nth-child(3) {
  top: 32px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(340px, 48vw);
  object-fit: contain;
}

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

.mobile-launch-link {
  display: none;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--primary-dark);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.cta.solid {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: 0 18px 28px rgba(112, 47, 225, 0.28);
}

.cta.dark {
  background: #15111f;
  color: #fff;
  box-shadow: 0 16px 24px rgba(21, 17, 31, 0.18);
}

.cta.ghost {
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  border: 1px solid rgba(107, 60, 171, 0.12);
}

.hero,
.split-panel,
.launch-strip,
.trust,
.dual-grid,
.faq-section,
.social-section,
.site-footer {
  margin-top: 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 48px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(254, 237, 250, 0.76)),
    linear-gradient(135deg, rgba(200, 171, 255, 0.25), rgba(255, 172, 209, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -60px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(255, 184, 215, 0.45), transparent 60%);
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.section-title,
.feature-card,
.chart-card,
.panel-copy,
.insight-card,
.faq-item,
.trust {
  position: relative;
}

.hero-copy {
  max-width: 610px;
  padding-top: 22px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(141, 68, 242, 0.1);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero h1,
.section-title h2,
.panel-copy h2,
.launch-strip h2 {
  margin: 18px 0 16px;
  line-height: 1.15;
  font-family: "Tajawal", sans-serif;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.5rem);
  line-height: 1.22;
  max-width: 520px;
  letter-spacing: -0.02em;
}

.accent {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), #ab64ff);
  padding: 0 16px 6px;
  border-radius: 20px;
  display: inline-block;
}

.hero-copy p,
.panel-copy p,
.insight-card p,
.launch-strip p,
.faq-answer,
.feature-card p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.02rem;
}

.hero-copy > p {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.feature-card,
.insight-card,
.faq-item,
.chart-card,
.launch-strip,
.trust,
.topbar,
.mini-product,
.floating-note {
  border: 1px solid var(--border);
}

.stat-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-visual {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card.phone-frame {
  position: relative;
  width: min(360px, 100%);
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(180deg, #111, #33234a);
  box-shadow: 0 28px 70px rgba(44, 14, 86, 0.35);
  animation: floatY 7s ease-in-out infinite;
}

.phone-notch {
  width: 132px;
  height: 28px;
  background: #151515;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
}

.phone-screen {
  margin-top: 10px;
  min-height: 590px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 171, 204, 0.35), transparent 32%),
    linear-gradient(180deg, #fcfbff 0%, #f5eefb 100%);
}

.screen-head,
.screen-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.screen-time {
  color: #554b65;
  font-size: 0.9rem;
}

.screen-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(141, 68, 242, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
}

.screen-copy {
  display: block;
  margin: 24px 0;
}

.screen-copy h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-product {
  min-height: 138px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(111, 67, 165, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-product span {
  font-weight: 700;
}

.mini-product small {
  color: var(--muted);
}

.mini-product.rose {
  background: linear-gradient(180deg, #fff7fa, #ffe6ee);
}

.mini-product.gift {
  background: linear-gradient(180deg, #f1fcf9, #def7ee);
}

.mini-product.card {
  background: linear-gradient(180deg, #faf4ff, #efddff);
}

.mini-product.quick {
  background: linear-gradient(180deg, #fffaf0, #ffeec7);
}

.floating-note {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 36px rgba(101, 41, 199, 0.14);
  animation: floatY 5s ease-in-out infinite;
}

.note-top {
  top: 80px;
  right: 0;
}

.note-side {
  left: 10px;
  top: 240px;
  animation-delay: 1.4s;
}

.note-bottom {
  right: 24px;
  bottom: 64px;
  animation-delay: 0.8s;
}

.trust {
  padding: 22px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  text-align: center;
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: #584872;
  font-weight: 700;
}

.section-title {
  text-align: center;
  padding: 14px 0;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 700px;
  margin-inline: auto;
}

.feature-grid,
.dual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap i {
  font-size: 1.7rem;
}


.rose-bg {
  background: linear-gradient(135deg, #ffdbe7, #f5bfd2);
  color: #b34b76;
}

.mint-bg {
  background: linear-gradient(135deg, #ddfaf2, #b8eedf);
  color: #2d8f77;
}

.violet-bg {
  background: linear-gradient(135deg, #efe4ff, #d7c0ff);
  color: #7a4ac7;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 243, 250, 0.82), rgba(251, 236, 255, 0.72));
}

.chart-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  min-height: 360px;
  overflow: hidden;
}

.chart-lines {
  display: flex;
  justify-content: space-between;
  height: 100%;
  opacity: 0.5;
}

.chart-lines span {
  width: 1px;
  background: rgba(110, 96, 134, 0.22);
}

.chart-wave {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 110px;
  height: 120px;
  border-bottom: 4px solid #f1a33c;
  border-radius: 100px 100px 40px 60px;
  transform: skewX(-12deg);
  animation: pulseLine 4s ease-in-out infinite;
}

.chart-card p {
  position: absolute;
  right: 24px;
  bottom: 20px;
  max-width: 260px;
  color: var(--muted);
}

.panel-copy {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.panel-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  color: var(--muted);
}

.panel-copy li {
  margin-bottom: 12px;
  padding-right: 22px;
  position: relative;
}

.panel-copy li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.dual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card {
  padding: 34px;
  border-radius: 30px;
}

.insight-card.aqua {
  background: linear-gradient(135deg, rgba(221, 248, 243, 0.86), rgba(241, 253, 250, 0.8));
}

.insight-card.cream {
  background: linear-gradient(135deg, rgba(255, 243, 216, 0.9), rgba(255, 249, 237, 0.84));
}

.launch-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #6c27d9, #aa78ff);
  color: #fff;
  box-shadow: 0 30px 70px rgba(108, 39, 217, 0.28);
}

.launch-strip .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.launch-strip p {
  color: rgba(255, 255, 255, 0.82);
}

.launch-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 520px;
}

.form-note,
.form-status {
  width: 100%;
  margin: 0;
  font-size: 0.92rem;
}

.form-note {
  color: rgba(255, 255, 255, 0.76);
}

.form-status {
  color: #ffffff;
  font-weight: 700;
  min-height: 24px;
}

.launch-form input {
  min-width: min(340px, 100%);
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  outline: none;
}

.launch-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.launch-form button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #4b1aa1;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.faq-item {
  padding: 8px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.faq-item button {
  width: 100%;
  padding: 18px 0;
  background: transparent;
  text-align: right;
  font-weight: 700;
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 120px;
  padding-bottom: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

.float-card {
  animation: floatY 6s ease-in-out infinite;
}

.tilt-card {
  animation: tiltIn 7s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes tiltIn {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-10px);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    transform: skewX(-12deg) translateY(0);
  }
  50% {
    transform: skewX(-12deg) translateY(-14px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(22px, -18px, 0);
  }
}

@media (max-width: 980px) {
  .hero-copy {
    max-width: 100%;
    padding-top: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .topbar {
    position: sticky;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    order: 1;
    margin-inline-start: 0;
  }

  .header-actions {
    order: 2;
    margin-inline-start: auto;
  }

  .desktop-launch-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    gap: 10px;
    margin-top: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height 0.35s ease, opacity 0.28s ease, transform 0.28s ease, padding 0.28s ease;
  }

  .nav.is-open {
    max-height: 340px;
    padding: 16px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(107, 60, 171, 0.1);
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(82, 34, 148, 0.08);
    backdrop-filter: blur(18px);
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(141, 68, 242, 0.06);
  }

  .mobile-launch-link {
    display: inline-flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff !important;
    font-weight: 700;
  }

  .hero,
  .split-panel,
  .launch-strip,
  .feature-grid,
  .dual-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero {
    padding: 28px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 16px;
  }

  .launch-form {
    width: 100%;
  }

  .launch-form input {
    min-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    margin: 10px auto 24px;
    padding: 8px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand-logo {
    height: 58px;
    max-width: 220px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .stats-grid,
  .product-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-section,
  .site-footer {
    padding: 24px;
  }

  .visual-card.phone-frame {
    width: 100%;
  }

  .phone-screen {
    min-height: 520px;
  }

  .floating-note {
    transform: scale(0.92);
  }

  .note-side {
    left: -4px;
    top: 210px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}







.social-section {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.social-title p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.social-card {
  min-height: 130px;
  padding: 22px 18px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(82, 34, 148, 0.12);
}

.social-card i {
  font-size: 1.8rem;
}

.social-card.snap {
  color: #8e6e00;
  background: linear-gradient(135deg, #fff7d1, #fff0a6);
}

.social-card.x {
  color: #221a30;
  background: linear-gradient(135deg, #f2eff7, #e8e0f4);
}

.social-card.youtube {
  color: #c33434;
  background: linear-gradient(135deg, #ffe2e2, #ffd1d1);
}

.social-card.tiktok {
  color: #5a2c8d;
  background: linear-gradient(135deg, #efe3ff, #e1d2ff);
}

.social-card.instagram {
  color: #c24678;
  background: linear-gradient(135deg, #ffe1ec, #ffd3e2);
}

.site-footer {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 22px;
}

.footer-brand-block,
.footer-links,
.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-editor {
  justify-content: flex-start;
}

.footer-logo {
  width: min(240px, 100%);
  height: auto;
}

.footer-brand-block p,
.footer-subscribe p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.footer-links h3,
.footer-subscribe h3 {
  margin: 0;
  font-size: 1.08rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.footer-btn.secondary {
  background: rgba(141, 68, 242, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(107, 60, 171, 0.14);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(107, 60, 171, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.editor-list {
  margin: 0;
  padding: 0 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.editor-file {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(141, 68, 242, 0.08);
  color: var(--primary-dark);
  direction: ltr;
}
