/* ============================================================
   Shizukka Systems — animations.css v2
   Professional animation & enhancement layer
   ============================================================ */

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(.95) translateY(14px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-9px) rotate(.6deg); }
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}
@keyframes cartBounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.4); }
  65%  { transform: scale(.85); }
  100% { transform: scale(1); }
}
@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes progressShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── Scroll Progress Bar ─────────────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--teal) 0%,
    var(--gold) 50%,
    var(--teal) 100%
  );
  background-size: 200% 100%;
  z-index: 9999;
  transition: width .08s linear;
  pointer-events: none;
}

/* ── Announcement bar dot ────────────────────────────────── */
.announceDot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotBlink 2.2s ease infinite;
}

/* ── Hero — CSS-native entrance animations ───────────────── */
/* No JS needed; animation-fill-mode:both keeps initial state  */
.hero .kicker {
  animation: fadeUp .55s ease .08s both;
}
.hero h1 {
  animation: fadeUp .65s cubic-bezier(.22,.68,0,1.1) .18s both;
}
.hero .subhead {
  animation: fadeUp .6s ease .30s both;
}
.hero .vsl {
  animation: fadeUp .6s ease .44s both;
}
.hero .heroCTAs {
  animation: fadeUp .55s ease .56s both;
}
.hero .miniTrustGrid {
  animation: fadeUp .5s ease .66s both;
}
.hero .trustRow {
  animation: fadeUp .5s ease .74s both;
}
.hero .card.side {
  animation: fadeRight .7s cubic-bezier(.22,.68,0,1.15) .22s both;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  .6s cubic-bezier(.22,.68,0,1.2),
    transform .6s cubic-bezier(.22,.68,0,1.2);
}
.sr.sr-left  { transform: translateX(-22px); }
.sr.sr-right { transform: translateX(22px); }
.sr.sr-scale { transform: scale(.94); }
.sr.visible  { opacity: 1; transform: none; }

.sr-d1 { transition-delay: .07s; }
.sr-d2 { transition-delay: .14s; }
.sr-d3 { transition-delay: .21s; }
.sr-d4 { transition-delay: .28s; }
.sr-d5 { transition-delay: .35s; }

/* ── Stats Bar ───────────────────────────────────────────── */
.statsBar {
  padding: 20px 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(
    135deg,
    rgba(31,78,78,.03) 0%,
    rgba(198,168,94,.05) 100%
  );
}
.statsBarInner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.statCard {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.statCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(198,168,94,.08) 0%,
    rgba(31,78,78,.04) 100%
  );
  pointer-events: none;
}
.statCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
}
.statValue {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
  position: relative;
  z-index: 1;
}
[data-theme="dark"] .statValue { color: var(--sage); }
.statLabel {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  display: block;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

/* ── Book Cover ──────────────────────────────────────────── */
.bookCoverWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 10px;
}
.bookCover {
  width: 100%;
  max-width: 260px;
  border-radius: 10px;
  box-shadow:
    0 28px 60px rgba(0,0,0,.22),
    0 8px 20px rgba(0,0,0,.14);
  display: block;
  animation: floatY 5.5s ease-in-out infinite;
  transition: box-shadow .3s ease;
}
.bookCover:hover {
  animation-play-state: paused;
  box-shadow:
    0 38px 80px rgba(0,0,0,.28),
    0 12px 30px rgba(0,0,0,.18);
}

/* ── Amazon Notice ───────────────────────────────────────── */
.amazonNotice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(198,168,94,.09);
  border: 1px solid rgba(198,168,94,.28);
  border-radius: 12px;
  padding: 13px 15px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
[data-theme="dark"] .amazonNotice {
  background: rgba(198,168,94,.07);
  border-color: rgba(198,168,94,.20);
}
.amazonNotice .anIcon {
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}
.amazonNotice .anBody b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.amazonNotice .anLink {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  margin-top: 4px;
}
.amazonNotice .anLink:hover {
  text-decoration: underline;
  opacity: .85;
}

/* ── Cart Badge ──────────────────────────────────────────── */
.cartBtn { position: relative; }
.cartBadge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  background: var(--gold);
  color: #143A3A;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
}
.cartBadge.show { display: flex; }
.cartBtn.bump .cartBadge { animation: cartBounce .45s ease; }

/* ── Cart Overlay ────────────────────────────────────────── */
.cartOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.44);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.cartOverlay.active { opacity: 1; pointer-events: all; }

/* ── Cart Sidebar ────────────────────────────────────────── */
.cartSidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 94vw);
  background: var(--bg);
  border-left: 1px solid var(--stroke);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,.68,0,1.1);
  box-shadow: -14px 0 50px rgba(0,0,0,.12);
}
.cartSidebar.open { transform: translateX(0); }

.cartSidebarHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--stroke);
  flex-shrink: 0;
}
.cartSidebarTitle {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cartCloseBtn {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.cartCloseBtn:hover { background: rgba(31,78,78,.08); color: var(--text); }

.cartBody {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cartEmpty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  gap: 8px;
  padding: 40px 16px;
}
.cartEmptyIcon { font-size: 36px; opacity: .4; }

.cartItem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius2);
  background: var(--card);
  border: 1px solid var(--stroke);
  animation: fadeUp .25s ease;
}
.cartItemImg {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--stroke);
  flex-shrink: 0;
  background: rgba(31,78,78,.06);
}
.cartItemInfo { flex: 1; min-width: 0; }
.cartItemName {
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cartItemSub { font-size: 11px; color: var(--muted); }
.cartItemPrice {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.cartItemRemove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  border-radius: 6px;
  transition: color .15s;
}
.cartItemRemove:hover { color: #c0392b; }

.cartFooter {
  padding: 16px 20px;
  border-top: 1px solid var(--stroke);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cartTotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cartTotalLabel { color: var(--muted); font-size: 14px; }
.cartTotalValue { font-weight: 700; font-size: 18px; }
.cartCheckoutBtn { width: 100%; padding: 13px; font-size: 14px; }

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(31,78,78,.16);
  background: var(--card);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 4.5px;
  padding: 10px;
  transition: background .15s, border-color .15s;
}
.hamburger:hover {
  background: rgba(31,78,78,.08);
  border-color: rgba(31,78,78,.26);
}
[data-theme="dark"] .hamburger {
  background: rgba(255,255,255,.05);
  border-color: rgba(168,195,177,.18);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobileNav {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 8px 0 14px;
  z-index: 59;
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mobileNav.open {
  display: block;
  animation: mobileNavIn .2s ease both;
}
.mobileNav a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.mobileNav a:hover {
  background: rgba(31,78,78,.06);
  color: var(--text);
}
.mobileNavCTA {
  padding: 10px 22px 0;
  margin-top: 6px;
  border-top: 1px solid var(--stroke);
}
.mobileNavCTA .btn { width: 100%; justify-content: center; }

/* ── Button Enhancements ─────────────────────────────────── */
.btnPrimary {
  transition: transform .12s ease, box-shadow .2s ease;
}
.btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(198,168,94,.32);
}
.btnPrimary:active { transform: translateY(0); }

.btnGhost {
  transition: background .15s, transform .12s, border-color .15s;
}
.btnGhost:hover { transform: translateY(-1px); }

/* ── Framework (SANKA) cards ─────────────────────────────── */
.fw {
  transition: transform .2s ease, box-shadow .2s ease;
}
.fw:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.09);
}
.fw .letter {
  color: var(--teal);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
}
[data-theme="dark"] .fw .letter { color: var(--sage); }

/* ── Product Cards ───────────────────────────────────────── */
.productCard {
  transition: transform .22s ease, box-shadow .22s ease;
}
.productCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0,0,0,.12);
}

/* ── Pill rows ───────────────────────────────────────────── */
.pillRow {
  border-radius: 8px;
  padding: 6px 8px;
  margin: 0 -8px;
  transition: background .14s, transform .14s;
}
.pillRow:hover {
  background: rgba(31,78,78,.06);
  transform: translateX(4px);
}
[data-theme="dark"] .pillRow:hover {
  background: rgba(255,255,255,.05);
}

/* ── Trust signals ───────────────────────────────────────── */
.trustItem   { transition: background .14s; }
.trustItem:hover { background: rgba(255,255,255,.72); }
.trustCard   { transition: transform .15s; }
.trustCard:hover { transform: translateY(-2px); }

/* ── Price big ───────────────────────────────────────────── */
.priceBig { color: var(--teal); }
[data-theme="dark"] .priceBig { color: var(--sage); }

/* ── Offer lines ─────────────────────────────────────────── */
.offerLine { transition: color .12s; }
.offerLine:hover { color: var(--text); }

/* ── Sticky buy bar ──────────────────────────────────────── */
.stickyBuy {
  transition: transform .28s cubic-bezier(.22,.68,0,1.1);
}
.stickyBuy.hidden { transform: translateY(110%); }

/* ── VSL placeholder (shown when iframe URL is placeholder) ─ */
.vslPlaceholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  border-radius: var(--radius2);
  background: rgba(31,78,78,.06);
  border: 2px dashed rgba(31,78,78,.18);
  color: var(--muted);
  gap: 10px;
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
[data-theme="dark"] .vslPlaceholder {
  background: rgba(255,255,255,.03);
  border-color: rgba(168,195,177,.18);
}
.vslPlaceholder .vslPlayIcon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: rgba(31,78,78,.12);
  border: 2px solid rgba(31,78,78,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: .6;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1020px) {
  .statsBarInner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .statValue    { font-size: 24px; }
  .bookCover    { max-width: 200px; }
  .amazonNotice { flex-direction: column; gap: 8px; }

  .cartSidebar {
    width: 100vw;
    top: auto;
    height: 90vh;
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-top: 1px solid var(--stroke);
    transform: translateY(100%);
  }
  .cartSidebar.open { transform: translateY(0); }
}

/* ── Logo — new full brand lockup ───────────────────────── */
.brand img {
  height: 52px;
  width: auto;
  max-width: 180px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.brandBadge {
  display: flex;
  justify-content: center;
  padding: 8px 0 6px;
}
.brandBadge img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}
.heroWatermark {
  mix-blend-mode: overlay;
  opacity: .12;
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero .kicker, .hero h1, .hero .subhead,
  .hero .vsl, .hero .heroCTAs, .hero .miniTrustGrid,
  .hero .trustRow, .hero .card.side {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .sr { opacity: 1 !important; transform: none !important; }
  .bookCover { animation: none !important; }
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ── Custom VSL Player ───────────────────────────────────── */
.vslWrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius2);
  background: #000;
  cursor: pointer;
}
.vslVideoEl {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.vslOverlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.36);
  transition: background .2s;
}
.vslOverlay:hover { background: rgba(0,0,0,.50); }
.vslOverlay.hidden { display: none; }
.vslPlayBig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
}
.vslPlayBig svg {
  width: 68px; height: 68px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.55));
  transition: transform .18s;
}
.vslPlayBig:hover svg { transform: scale(1.1); }
.vslPlayBig span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .78;
  font-family: Inter, sans-serif;
}
.vslControls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 0 6px;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .22s;
  pointer-events: none;
}
.vslWrap:hover .vslControls,
.vslWrap.playing .vslControls {
  opacity: 1;
  pointer-events: all;
}
.vslProgress {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 12px;
  position: relative;
  flex-shrink: 0;
}
.vslProgressBg {
  position: absolute;
  left: 12px; right: 12px;
  height: 3px;
  background: rgba(255,255,255,.22);
  border-radius: 99px;
}
.vslProgressFill {
  position: absolute;
  left: 12px;
  height: 3px;
  background: var(--teal);
  border-radius: 99px;
  width: 0%;
  pointer-events: none;
  transition: width .12s linear;
}
[data-theme="dark"] .vslProgressFill { background: var(--sage); }
.vslProgressThumb {
  position: absolute;
  width: 13px; height: 13px;
  border-radius: 99px;
  background: #fff;
  top: 50%; transform: translateY(-50%);
  left: 12px;
  margin-left: -6px;
  pointer-events: none;
  box-shadow: 0 1px 5px rgba(0,0,0,.45);
  transition: transform .12s;
}
.vslProgress:hover .vslProgressThumb { transform: translateY(-50%) scale(1.35); }
.vslBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
.vslLeft, .vslRight {
  display: flex;
  align-items: center;
  gap: 2px;
}
.vslBtn {
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  opacity: .85;
  transition: opacity .12s, background .12s;
  flex-shrink: 0;
}
.vslBtn:hover { opacity: 1; background: rgba(255,255,255,.14); }
.vslBtn svg { width: 17px; height: 17px; }
.vslTime {
  font-size: 11px;
  color: rgba(255,255,255,.80);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  margin-left: 4px;
  font-family: Inter, sans-serif;
}

/* ── Engagement Chat Popup ───────────────────────────────── */
.engagePopup {
  position: fixed;
  top: 82px; right: 18px;
  width: 310px;
  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 28px 65px rgba(0,0,0,.20);
  z-index: 252;
  overflow: hidden;
  animation: fadeUp .32s cubic-bezier(.22,.68,0,1.1) both;
}
.engageHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: var(--teal);
  color: #fff;
}
[data-theme="dark"] .engageHead {
  background: #0d2c30;
  border-bottom: 1px solid var(--stroke);
}
.engageHeadLeft {
  display: flex;
  align-items: center;
  gap: 10px;
}
.engageAvatar {
  width: 34px; height: 34px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,.18);
  padding: 3px;
  flex-shrink: 0;
}
.engageName { font-weight: 700; font-size: 13px; line-height: 1.2; }
.engageStatus {
  font-size: 11px;
  opacity: .82;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}
.engageDot {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: #4ade80;
  display: inline-block;
  flex-shrink: 0;
}
.engageClose {
  width: 28px; height: 28px;
  border-radius: 99px;
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: background .12s;
  flex-shrink: 0;
}
.engageClose:hover { background: rgba(255,255,255,.32); }
.engageBody {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 230px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.engageMsg {
  background: rgba(31,78,78,.07);
  border: 1px solid rgba(31,78,78,.12);
  border-radius: 12px 12px 12px 3px;
  padding: 9px 13px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  animation: fadeUp .22s ease both;
}
[data-theme="dark"] .engageMsg {
  background: rgba(255,255,255,.07);
  border-color: rgba(168,195,177,.14);
}
.engageTyping {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(31,78,78,.06);
  border: 1px solid rgba(31,78,78,.10);
  border-radius: 12px 12px 12px 3px;
  width: fit-content;
  animation: fadeUp .18s ease both;
}
[data-theme="dark"] .engageTyping {
  background: rgba(255,255,255,.05);
  border-color: rgba(168,195,177,.12);
}
.engageTyping span {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--muted);
  display: inline-block;
  animation: dotBlink 1.3s ease infinite;
}
.engageTyping span:nth-child(2) { animation-delay: .22s; }
.engageTyping span:nth-child(3) { animation-delay: .44s; }
.engageCTA {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--stroke);
  animation: fadeUp .22s ease both;
}
