/* =============================================================================
   HeyServo homepage layer · light-first redesign
   Loads after app.css and v4.css on index.html only.
   Reference grammar: NICE gradient product tiles and rule-topped feature rows,
   Help Scout airy showcase, Freshdesk colored channel icon rows.
   ============================================================================= */

/* ---------------------------------------------------------------------------
   nav · industries dropdown
   --------------------------------------------------------------------------- */
.home-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 50%;
  translate: -50% 0;
  width: 380px;
  padding: 0.5rem;
  border-radius: 18px;
  border: 1px solid var(--color-hairline);
  background: #fff;
  box-shadow: 0 24px 60px -24px rgba(16, 18, 35, 0.25);
  z-index: 60;
}
html[dir="rtl"] .home-dropdown { translate: 50% 0; }
.home-dd-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  transition: background-color 180ms ease;
}
.home-dd-item:hover { background: var(--color-page-cool); }
.home-dd-ic {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 12px;
  flex: none;
}
#navIndustries [aria-expanded="true"] [data-chev] { rotate: 180deg; }

/* ---------------------------------------------------------------------------
   hero · gradient product tile with floating moments
   --------------------------------------------------------------------------- */
.home-heroTile {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  background:
    radial-gradient(120% 100% at 85% 0%, #e6e0fb 0%, transparent 55%),
    radial-gradient(120% 120% at 0% 100%, #dbe4fb 0%, transparent 60%),
    linear-gradient(160deg, #f2f2fe 0%, #e9e6fc 48%, #e3ebfc 100%);
  border: 1px solid rgba(79, 70, 229, 0.12);
  overflow: hidden;
}
@media (max-width: 1023px) { .home-heroTile { min-height: 470px; } }

.home-float {
  position: absolute;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 22px 50px -22px rgba(30, 27, 75, 0.3);
  padding: 0.875rem;
  animation: homeFloat 7s ease-in-out infinite;
}
.home-float-1 { top: 7%; inset-inline-start: 6%; width: min(320px, 62%); animation-delay: 0s; z-index: 3; }
.home-float-2 { bottom: 9%; inset-inline-end: 6%; width: min(280px, 56%); animation-delay: 1.6s; z-index: 3; }
.home-float-3 { top: 12%; inset-inline-end: 7%; width: 180px; animation-delay: 3s; z-index: 2; }
.home-float-4 { bottom: 12%; inset-inline-start: 8%; width: 190px; padding: 0; overflow: hidden; animation-delay: 2.2s; z-index: 1; }
.home-float-4 img { display: block; height: 130px; width: 100%; object-fit: cover; }
.home-float-5 {
  top: 47%; inset-inline-start: 42%;
  display: flex; gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: 9999px;
  animation-delay: 4.2s; z-index: 2;
}
@keyframes homeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.home-bubble-guest,
.home-bubble-agent {
  border-radius: 12px;
  padding: 0.5625rem 0.75rem;
  font-size: 0.78125rem;
  line-height: 1.5;
  max-width: 100%;
}
.home-bubble-guest {
  background: var(--color-page-cool);
  border: 1px solid var(--color-hairline);
  color: var(--color-ink-soft);
}
.home-bubble-agent {
  margin-top: 0.5rem;
  background: var(--color-brand);
  color: #fff;
}
.home-float-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-ink-muted);
}
.home-float-meta svg { color: var(--color-brand); }

.home-mini-ch {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  color: var(--c, #4f46e5);
  box-shadow: 0 8px 18px -8px rgba(16, 18, 35, 0.2);
}
.home-mini-ch svg { height: 1.125rem; width: 1.125rem; }

/* ---------------------------------------------------------------------------
   rule-topped feature row (NICE grammar)
   --------------------------------------------------------------------------- */
.home-feature { border-top: 1px solid var(--color-ink); padding-top: 1.375rem; }
.home-feature h3 { font-size: 1.0625rem; font-weight: 600; }
.home-feature p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--color-ink-soft); }

/* ---------------------------------------------------------------------------
   console tabs · light context
   --------------------------------------------------------------------------- */
.home-ctab {
  position: relative;
  overflow: hidden;
  min-height: 2.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--color-hairline);
  background: #fff;
  color: var(--color-ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, box-shadow 280ms ease;
}
.home-ctab:hover { border-color: rgba(79, 70, 229, 0.45); color: var(--color-ink); box-shadow: 0 10px 26px -14px rgba(79, 70, 229, 0.3); }
.home-ctab[aria-selected="true"] {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border-color: #4f46e5;
  color: #fff;
  box-shadow: 0 14px 34px -18px rgba(79, 70, 229, 0.6);
}
/* autoplay progress rail on the active tab */
.home-ctab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  transform-origin: var(--rail-o, left);
  transform: scaleX(var(--rail, 0));
  transition: transform 300ms linear;
}
html[dir="rtl"] .home-ctab[aria-selected="true"]::after { --rail-o: right; }

.home-cview { animation: homeViewIn 220ms ease both; }
@keyframes homeViewIn { from { opacity: 0; } to { opacity: 1; } }

.home-crow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-hairline);
  border-radius: 12px;
  font-size: 0.84375rem;
  background: #fff;
  transition: border-color 220ms ease, box-shadow 260ms ease;
}
.home-crow:hover { border-color: rgba(79, 70, 229, 0.35); box-shadow: 0 10px 26px -16px rgba(79, 70, 229, 0.25); }
.home-cbadge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: var(--color-brand-wash);
  color: var(--color-brand-deep);
  font-size: 0.71875rem;
  font-weight: 600;
  white-space: nowrap;
}
.home-cok { font-size: 0.75rem; color: var(--color-ink-muted); font-variant-numeric: tabular-nums; }
.home-clink {
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--color-brand);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.25rem 0.375rem;
}
.home-clink:hover { color: var(--color-brand-deep); }

.home-cbar {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 8fr) 3.25rem;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.84375rem;
  color: var(--color-ink-soft);
}
.home-cbar i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #4f46e5);
  width: var(--w, 50%);
}
.home-cbar b { font-weight: 600; color: var(--color-ink); font-variant-numeric: tabular-nums; text-align: end; }

/* ---------------------------------------------------------------------------
   experience cards (NICE gradient-visual cards)
   --------------------------------------------------------------------------- */
.home-xcard { overflow: hidden; padding: 0; transition: border-color 260ms ease, box-shadow 320ms ease; }
.home-xcard:hover { border-color: rgba(79, 70, 229, 0.3); box-shadow: 0 28px 60px -28px rgba(79, 70, 229, 0.28); }
.home-xvisual {
  position: relative;
  height: 250px;
  background: linear-gradient(150deg, var(--g1, #eef0fd), var(--g2, #dfe3fb));
  overflow: hidden;
}
.home-xvisual > img {
  position: absolute;
  top: 14%; inset-inline-start: 8%;
  width: 58%;
  height: 72%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 44px -20px rgba(30, 27, 75, 0.4);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.home-xcard:hover .home-xvisual > img { transform: translateY(-6px); }
.home-xbubble {
  position: absolute;
  bottom: 10%; inset-inline-end: 6%;
  width: 56%;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 18px 40px -18px rgba(30, 27, 75, 0.35);
  padding: 0.75rem;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.home-xcard:hover .home-xbubble { transform: translateY(-8px); }
.home-xconsole {
  position: absolute;
  inset: 12% 10%;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 18px 44px -18px rgba(30, 27, 75, 0.35);
  padding: 1rem;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.home-xcard:hover .home-xconsole { transform: translateY(-6px); }

/* ---------------------------------------------------------------------------
   channels · Freshdesk-style colored tiles
   --------------------------------------------------------------------------- */
.home-chtile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 7.25rem;
  text-align: center;
}
.home-chtile .ic {
  display: grid;
  place-items: center;
  height: 4.25rem;
  width: 4.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 16px 34px -16px rgba(16, 18, 35, 0.18);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease, border-color 300ms ease;
}
.home-chtile .ic svg { height: 2rem; width: 2rem; }
.home-chtile:hover .ic {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 24px 44px -18px rgba(79, 70, 229, 0.3);
}
.home-chtile .lb { font-size: 0.8125rem; font-weight: 500; color: var(--color-ink-soft); }

/* ---------------------------------------------------------------------------
   agents vs OS ledger
   --------------------------------------------------------------------------- */
.home-ledger { display: flex; flex-direction: column; gap: 0.625rem; }
.home-ledger-head,
.home-ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 5fr) minmax(0, 6fr);
  gap: 0.75rem;
  align-items: stretch;
}
.home-ledger-head { padding-inline: 0.25rem; }
.home-ledger-col {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
  padding: 0.5rem 1.25rem;
}
.home-ledger-col-os { color: var(--color-brand-deep); }
.home-ledger-label {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
  padding-inline: 0.25rem;
}
.home-ledger-agent,
.home-ledger-os {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-size: 0.90625rem;
  line-height: 1.55;
}
.home-ledger-agent {
  background: var(--color-page-cool);
  border: 1px solid var(--color-hairline);
  color: var(--color-ink-muted);
}
.home-ledger-os {
  background: var(--color-brand-wash);
  border: 1px solid rgba(79, 70, 229, 0.22);
  color: var(--color-ink);
  font-weight: 500;
  transition: border-color 240ms ease, box-shadow 280ms ease;
}
.home-ledger-row:hover .home-ledger-os {
  border-color: rgba(79, 70, 229, 0.5);
  box-shadow: 0 10px 30px -18px rgba(79, 70, 229, 0.45);
}
@media (max-width: 767px) {
  .home-ledger-head { display: none; }
  .home-ledger-row { grid-template-columns: 1fr; gap: 0.5rem; padding-block: 0.5rem; border-bottom: 1px solid var(--color-hairline-soft); }
  .home-ledger-agent::before { content: "Agent · "; font-weight: 600; }
  .home-ledger-os::before { content: "OS · "; font-weight: 600; color: var(--color-brand-deep); }
  html[lang="ar"] .home-ledger-agent::before { content: "الوكيل · "; }
  html[lang="ar"] .home-ledger-os::before { content: "النظام · "; }
}

/* ---------------------------------------------------------------------------
   five-layer stack
   --------------------------------------------------------------------------- */
.home-stack { position: relative; display: flex; flex-direction: column; gap: 1rem; }
.home-stack::before {
  content: "";
  position: absolute;
  top: 2rem; bottom: 2rem;
  inset-inline-start: 2.35rem;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--color-brand-tint) 12%, var(--color-brand-tint) 88%, transparent);
}
@media (max-width: 639px) { .home-stack::before { display: none; } }
.home-layer {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 0.5rem;
  padding: 1.75rem;
  position: relative;
  transition: border-color 260ms ease, box-shadow 320ms ease;
}
.home-layer:hover { border-color: rgba(79, 70, 229, 0.28); box-shadow: 0 24px 48px -24px rgba(79, 70, 229, 0.18); }
@media (max-width: 639px) { .home-layer { grid-template-columns: 1fr; } }
.home-layer-num {
  font-size: 1.5rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: var(--color-brand-tint);
  line-height: 1;
}

/* ---------------------------------------------------------------------------
   waitlist collage
   --------------------------------------------------------------------------- */
.home-collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 86px;
  gap: 0.875rem;
  max-width: 560px;
}
.home-tile {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-hairline);
  background: #fff;
  box-shadow: 0 18px 40px -22px rgba(30, 27, 75, 0.25);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
}
.home-tile:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -24px rgba(79, 70, 229, 0.3); }
.home-tile img { height: 100%; width: 100%; object-fit: cover; }
.home-tile-a { grid-column: span 2; grid-row: span 3; }
.home-tile-b { grid-column: span 4; grid-row: span 2; padding: 0.875rem; }
.home-tile-c { grid-column: span 2; grid-row: span 1; display: flex; flex-direction: column; justify-content: center; padding: 0.5rem 0.875rem; background: var(--color-brand-wash); border-color: rgba(79, 70, 229, 0.2); }
.home-tile-c .metric { line-height: 1.1; }
.home-tile-d { grid-column: span 2; grid-row: span 2; }
.home-tile-e { grid-column: span 2; grid-row: span 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* ---------------------------------------------------------------------------
   reduced motion
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .home-float { animation: none; }
  .home-cview { animation: none; }
  .home-ctab[aria-selected="true"]::after { display: none; }
  .home-xcard:hover :is(.home-xvisual > img, .home-xbubble, .home-xconsole) { transform: none; }
  .home-chtile:hover .ic, .home-tile:hover { transform: none; }
}

/* =============================================================================
   home4 · one-page skeleton layer
   ============================================================================= */
.home4-hero {
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(129, 140, 248, 0.18), transparent 65%),
    radial-gradient(800px 420px at -8% 30%, rgba(99, 102, 241, 0.12), transparent 60%),
    linear-gradient(180deg, #f6f5fd 0%, #ffffff 88%);
}
.home4-badge {
  position: absolute;
  z-index: 5;
  width: 170px;
  padding: 1rem 1.125rem;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 24px 50px -20px rgba(30, 27, 75, 0.45);
  animation: homeFloat 7s ease-in-out infinite;
}
.home4-badge-l { top: -26px; inset-inline-start: -14px; background: linear-gradient(140deg, #4f46e5, #6366f1); transform: rotate(-5deg); }
.home4-badge-r { bottom: -26px; inset-inline-end: -14px; background: linear-gradient(140deg, #7c3aed, #a78bfa); transform: rotate(4deg); animation-delay: 1.8s; }
@media (min-width: 1100px) {
  .home4-badge-l { inset-inline-start: -64px; }
  .home4-badge-r { inset-inline-end: -64px; }
}
.home4-pill {
  position: absolute;
  z-index: 5;
  padding: 0.4375rem 0.875rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 12px 26px -12px rgba(30, 27, 75, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-brand-deep);
  animation: homeFloat 6s ease-in-out infinite;
}
.home4-pill-1 { top: -14px; inset-inline-end: 12%; animation-delay: 0.9s; }
.home4-pill-2 { bottom: -14px; inset-inline-start: 14%; animation-delay: 2.6s; }
@media (max-width: 767px) {
  .home4-badge { display: none; }
  .home4-pill { display: none; }
}
.home-mq { overflow: hidden; }
.home-mq-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: homeMq 32s linear infinite;
  padding-inline-end: 2.25rem;
}
html[dir="rtl"] .home-mq-track { animation-name: homeMqR; }
.home-mq:hover .home-mq-track { animation-play-state: paused; }
@keyframes homeMq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes homeMqR { from { transform: translateX(0); } to { transform: translateX(50%); } }
.home-mq-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  white-space: nowrap;
}
.home-mq-item svg { height: 1.5rem; width: 1.5rem; }
.home-mq-chip {
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--color-hairline);
  background: var(--color-page-cool);
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}
.home4-blob { position: relative; }
.home4-blob img {
  width: min(440px, 100%);
  margin-inline: auto;
  animation: homeFloat 9s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(79, 70, 229, 0.18));
}
.home4-bento { display: grid; gap: 1.25rem; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.home4-bcard { overflow: hidden; padding: 0; position: relative; transition: border-color 260ms ease, box-shadow 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.home4-bcard:hover { border-color: rgba(79, 70, 229, 0.32); box-shadow: 0 28px 60px -28px rgba(79, 70, 229, 0.3); transform: translateY(-3px); }
.home4-b1 { grid-column: span 12; }
.home4-b2 { grid-column: span 12; min-height: 300px; }
.home4-b3 { grid-column: span 12; }
.home4-b4 { grid-column: span 12; }
@media (min-width: 1024px) {
  .home4-b1 { grid-column: span 7; }
  .home4-b2 { grid-column: span 5; grid-row: span 2; }
  .home4-b3 { grid-column: span 4; }
  .home4-b4 { grid-column: span 3; }
}
.home4-bshot { border-bottom: 1px solid var(--color-hairline); background: var(--color-page-warm); }
.home4-bcap {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(11, 12, 26, 0.85));
}
.home4-gauge {
  position: relative;
  height: 92px; width: 92px; flex: none;
  border-radius: 50%;
  background: conic-gradient(var(--color-brand) calc(var(--v) * 1%), var(--color-brand-tint) 0);
  display: grid; place-items: center;
}
.home4-gauge::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.home4-gauge span { position: relative; font-weight: 650; font-size: 1.125rem; font-variant-numeric: tabular-nums; }
.home4-svc {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-hairline);
  border-inline-start: 1px solid var(--color-hairline);
}
@media (min-width: 640px) { .home4-svc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .home4-svc { grid-template-columns: repeat(3, 1fr); } }
.home4-svc-item {
  padding: 2.25rem 2rem;
  border-bottom: 1px solid var(--color-hairline);
  border-inline-end: 1px solid var(--color-hairline);
  transition: background-color 260ms ease;
}
.home4-svc-item:hover { background: var(--color-brand-wash); }
.home4-svc-ic {
  display: grid; place-items: center;
  height: 2.75rem; width: 2.75rem;
  border-radius: 12px;
  background: var(--color-brand-wash);
  color: var(--color-brand);
  transition: background-color 260ms ease, color 260ms ease;
}
.home4-svc-ic svg { height: 1.375rem; width: 1.375rem; }
.home4-svc-item:hover .home4-svc-ic { background: var(--color-brand); color: #fff; }
.home4-svc-item h3 { margin-top: 1.125rem; font-size: 1.0625rem; font-weight: 600; }
.home4-svc-item p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.65; color: var(--color-ink-soft); }
.home4-darkcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(99, 102, 241, 0.35), transparent 60%),
    linear-gradient(160deg, #14162e, #0f1222);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 260ms ease, box-shadow 320ms ease;
}
.home4-darkcard:hover { border-color: rgba(129, 140, 248, 0.5); box-shadow: 0 28px 60px -28px rgba(79, 70, 229, 0.45); }
.home4-metric { padding: 2rem; text-align: center; }
.home4-metric-featured {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(129, 140, 248, 0.3), transparent 60%),
    linear-gradient(165deg, #4f46e5, #3730a3);
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: scale(1.02);
}
@media (min-width: 1024px) { .home4-metric-featured { transform: scale(1.045); } }
.home4-band {
  background:
    radial-gradient(900px 400px at 50% -20%, rgba(129, 140, 248, 0.4), transparent 70%),
    linear-gradient(150deg, #4f46e5 0%, #4338ca 55%, #3730a3 100%);
}
@media (prefers-reduced-motion: reduce) {
  .home4-badge, .home4-pill, .home4-blob img { animation: none; }
  .home-mq-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .home4-bcard:hover { transform: none; }
}

/* =============================================================================
   home5 · orbit hero, toasts, imaged service cards, tint card, metric viz,
   wave band
   ============================================================================= */

/* 1 · orbital communication lines behind the hero */
.home5-orbits {
  position: absolute;
  inset: -18% -12% auto;
  height: 130%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}
.home5-orbits svg { width: 100%; height: 100%; }
.home5-ring { stroke: rgba(79, 70, 229, 0.12); stroke-width: 1.25; }
.home5-dot { fill: #4f46e5; opacity: 0.55; }
.home5-dot-b { fill: #818cf8; }
.home4-hero .shell { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .home5-dot { display: none; } }

/* 2/3 · richer floating cards + toast notifications over the media */
.home4-badge { width: 196px; }
.home5-badge-ic {
  display: grid; place-items: center;
  height: 2.25rem; width: 2.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.home5-badge-ic svg { height: 1.125rem; width: 1.125rem; }

.home5-toasts {
  position: absolute;
  top: 1rem; inset-inline-end: 1rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
  z-index: 3;
}
.home5-toast {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 30px -12px rgba(11, 12, 26, 0.5);
  font-size: 0.75rem; font-weight: 600; color: var(--color-ink);
  animation: home5ToastIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home5-toast.out { animation: home5ToastOut 360ms ease both; }
.home5-toast svg { height: 0.875rem; width: 0.875rem; color: #16a34a; }
.home5-toast .ic-brand { color: var(--color-brand); }
@keyframes home5ToastIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes home5ToastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(-6px); } }

/* 6 · service cards: separated, imaged tops */
.home4-svc.home5-svc-grid { border: 0; gap: 1.25rem; }
.home5-svc-card {
  border: 1px solid var(--color-hairline) !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  padding: 0 0 1.75rem;
  box-shadow: 0 1px 2px rgb(16 18 35 / 0.04), 0 12px 32px -12px rgb(16 18 35 / 0.08);
  transition: border-color 260ms ease, box-shadow 320ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.home5-svc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 70, 229, 0.32) !important;
  box-shadow: 0 26px 56px -26px rgba(79, 70, 229, 0.3);
  background: #fff;
}
.home5-svc-img { height: 7rem; overflow: hidden; border-bottom: 1px solid var(--color-hairline); }
.home5-svc-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1); }
.home5-svc-card:hover .home5-svc-img img { transform: scale(1.05); }
.home5-svc-card .home4-svc-ic { margin: 1.375rem 2rem 0; }
.home5-svc-card h3 { padding-inline: 2rem; }
.home5-svc-card p { padding-inline: 2rem; }

/* 8 · tinted trust card */
.home5-tintcard {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(129, 140, 248, 0.22), transparent 60%),
    linear-gradient(160deg, #eef0fd, #e3e6fb);
  border-color: rgba(79, 70, 229, 0.22) !important;
}

/* 9 · metric visual composition */
.home5-viz {
  position: relative;
  height: 460px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.home5-viz-rings { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; }
.home5-viz-rings span {
  position: absolute;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 50%;
  animation: home5Pulse 5s ease-in-out infinite;
}
.home5-viz-rings span:nth-child(1) { height: 190px; width: 190px; }
.home5-viz-rings span:nth-child(2) { height: 300px; width: 300px; animation-delay: 1.2s; }
.home5-viz-rings span:nth-child(3) { height: 410px; width: 410px; animation-delay: 2.4s; }
@keyframes home5Pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.03); } }
.home5-viz-core {
  display: grid; place-items: center;
  height: 108px; width: 108px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 30px 60px -24px rgba(79, 70, 229, 0.4);
}
.home5-viz-core img { height: 3.25rem; width: auto; }
.home5-viz-ch {
  position: absolute;
  top: 50%; inset-inline-start: 50%;
  display: grid; place-items: center;
  height: 3rem; width: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 14px 28px -12px rgba(16, 18, 35, 0.25);
  color: var(--c, #4f46e5);
  transform: rotate(calc(var(--i) * 60deg)) translateY(-150px) rotate(calc(var(--i) * -60deg));
  animation: home5Orbit 36s linear infinite;
}
.home5-viz-ch svg { height: 1.375rem; width: 1.375rem; }
@keyframes home5Orbit {
  from { transform: rotate(calc(var(--i) * 60deg)) translateY(-150px) rotate(calc(var(--i) * -60deg)); }
  to { transform: rotate(calc(var(--i) * 60deg + 360deg)) translateY(-150px) rotate(calc(var(--i) * -60deg - 360deg)); }
}
.home5-viz-toast {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 16px 32px -14px rgba(30, 27, 75, 0.3);
  font-size: 0.75rem; font-weight: 600; color: var(--color-ink);
  animation: home5TFloat 6s ease-in-out infinite;
}
.home5-viz-toast svg { height: 0.875rem; width: 0.875rem; color: var(--color-brand); }
.home5-vt1 { top: 9%; inset-inline-start: 4%; }
.home5-vt2 { bottom: 13%; inset-inline-end: 2%; animation-delay: 2s; }
.home5-vt3 { bottom: 4%; inset-inline-start: 12%; animation-delay: 4s; }
@keyframes home5TFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* 10 · CTA band waves */
.home5-waves { position: absolute; inset: 0; z-index: 0; display: grid; place-items: end center; pointer-events: none; }
.home5-waves span {
  position: absolute;
  bottom: -55%;
  height: 70vw; width: 70vw;
  max-height: 900px; max-width: 900px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: home5Wave 8s ease-out infinite;
}
.home5-waves span:nth-child(2) { animation-delay: 2s; }
.home5-waves span:nth-child(3) { animation-delay: 4s; }
.home5-waves span:nth-child(4) { animation-delay: 6s; }
@keyframes home5Wave {
  0% { transform: scale(0.55); opacity: 0; }
  25% { opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home5-viz-ch, .home5-viz-rings span, .home5-viz-toast, .home5-waves span { animation: none; }
  .home5-toasts { display: none; }
  .home5-svc-card:hover { transform: none; }
  .home5-svc-card:hover .home5-svc-img img { transform: none; }
}

/* =============================================================================
   home6 · refinements: transparent ribbon, dark trust set, overflow numerals,
   network-wave band, dropdown bridge, illustration tops
   ============================================================================= */

/* illustrations sit taller than the old photo strip and keep their flat ground */
.home6-ill { height: 8.5rem; background: #eef0fd; }
.home6-ill img { object-fit: cover; }

/* all four trust cards share the dark treatment; grid stretches them evenly */
.home6-dark { min-height: 100%; }

/* gradient numerals overflowing the card's top edge */
.home6-numcard { overflow: visible; margin-top: 1.25rem; }
.home6-num {
  display: block;
  width: 6.5rem;
  flex: none;
  align-self: flex-start;
  margin-top: -2.5rem;
  text-align: center;
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(160deg, #818cf8 0%, #4f46e5 55%, #3730a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 24px rgba(79, 70, 229, 0.25));
}

/* band: white network waves */
.home6-netwaves { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.home6-netwaves svg { width: 100%; height: 100%; }
.home6-wave {
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 14 10;
  animation: home6Dash 26s linear infinite;
}
.home6-w2 { stroke: rgba(255, 255, 255, 0.22); animation-duration: 34s; animation-direction: reverse; }
.home6-w3 { stroke: rgba(255, 255, 255, 0.16); animation-duration: 42s; }
@keyframes home6Dash { to { stroke-dashoffset: -480; } }
.home6-node { fill: rgba(255, 255, 255, 0.8); animation: home6Node 4s ease-in-out infinite; }
.home6-node:nth-of-type(odd) { animation-delay: 2s; }
@keyframes home6Node { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* dropdown: hover bridge across the gap + generous close delay handled in JS */
.home-dropdown::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .home6-wave, .home6-node { animation: none; }
}

/* =============================================================================
   home7 · numeral revert, single-line outcome bars, skyline FAQ glass
   ============================================================================= */

/* 7 · numerals back inside the card, gradient kept */
.home6-numcard { overflow: hidden; margin-top: 0; }
.home6-num {
  align-self: center;
  margin-top: 0;
  width: 6rem;
  font-size: 2.125rem;
  line-height: 1.1;
  filter: none;
}

/* 3 · outcome bars: labels never wrap */
.home-cbar { grid-template-columns: minmax(max-content, 9rem) 1fr 2.75rem; }
.home-cbar span { white-space: nowrap; }

/* 8 · FAQ glass cards on the skyline */
.home7-faq details {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transition: background-color 260ms ease, border-color 260ms ease;
}
.home7-faq details:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
.home7-faq details summary { color: #fff; }
.home7-faq details summary svg { color: rgba(255, 255, 255, 0.7); }
.home7-faq details > p {
  color: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.14);
}

/* =============================================================================
   home8 · corner badge, feature icons, photo cards, logo marquee
   ============================================================================= */

/* 1 · 24/7 status badge stuck to the media corner */
.home8-247 {
  position: absolute;
  bottom: 1rem;
  inset-inline-end: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.875rem;
  border-radius: 9999px;
  background: rgba(79, 70, 229, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px -10px rgba(79, 70, 229, 0.6);
}

/* 2 · feature icons */
.home8-fic {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  margin-bottom: 0.875rem;
  border-radius: 12px;
  background: var(--color-brand-wash);
  color: var(--color-brand);
}
.home8-fic svg { height: 1.25rem; width: 1.25rem; }
.home-feature:hover .home8-fic { background: var(--color-brand); color: #fff; transition: background-color 260ms ease, color 260ms ease; }

/* 3 · realistic photo tops, a little taller */
.home8-photo { height: 10.5rem; background: var(--color-page-cool); }
.home8-photo img { object-fit: cover; object-position: 50% 22%; }

/* 6 · marquee logos stand alone at logo scale */
.home8-logo svg { height: 2rem; width: 2rem; }

/* =============================================================================
   home9 · live-demo QR card
   ============================================================================= */
.home8-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 380px;
  margin-inline: auto;
  padding: 2.25rem 2rem;
  border-radius: 24px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(129, 140, 248, 0.14), transparent 60%),
    #ffffff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 32px 70px -32px rgba(30, 27, 75, 0.3);
  transition: border-color 260ms ease, box-shadow 320ms ease;
}
.home8-demo:hover { border-color: rgba(79, 70, 229, 0.32); box-shadow: 0 36px 80px -32px rgba(79, 70, 229, 0.35); }
.home8-qr {
  padding: 0.875rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--color-hairline);
  box-shadow: 0 14px 34px -18px rgba(30, 27, 75, 0.25);
}
.home8-qr img { display: block; height: 180px; width: 180px; }

/* =============================================================================
   home10 · industry live demo (self-contained twin of the hospitality demo)
   ============================================================================= */
#home-demo .hd-console {
  border-radius: 24px;
  border: 1px solid rgba(16, 18, 35, 0.1);
  box-shadow:
    0 1px 2px rgba(16, 18, 35, 0.05),
    0 24px 70px -28px rgba(30, 27, 75, 0.35),
    0 60px 120px -60px rgba(79, 70, 229, 0.25);
}
.hd-ind {
  min-height: 2.75rem;
  border-radius: 14px;
  border: 1px solid var(--color-hairline);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, box-shadow 280ms ease;
}
.hd-ind:hover { border-color: rgba(79, 70, 229, 0.4); color: var(--color-ink); }
.hd-ind-on {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border-color: #4f46e5;
  color: #fff;
  box-shadow: 0 14px 34px -18px rgba(79, 70, 229, 0.6);
}
#hdModules > button { position: relative; overflow: hidden; border-radius: 16px; transition: border-color 240ms ease, background-color 240ms ease, box-shadow 300ms ease; }
#hdModules > button:hover { border-color: rgba(79, 70, 229, 0.4); box-shadow: 0 10px 28px -16px rgba(79, 70, 229, 0.35); }
#hdModules > button::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 16%; bottom: 16%;
  width: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
#hdModules > button[aria-selected="true"] {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%) !important;
  border-color: #4f46e5 !important;
  box-shadow: 0 14px 34px -18px rgba(79, 70, 229, 0.6);
}
#hdModules > button[aria-selected="true"]::before { opacity: 1; transform: scaleY(1); }
#hdModules > button[aria-selected="true"] span { color: #fff !important; }
#hdModules > button[aria-selected="true"] span + span { color: rgba(255, 255, 255, 0.72) !important; }
#home-demo .hd-thread-wrap { position: relative; isolation: isolate; }
#home-demo .hd-thread-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
#home-demo .hd-thread-bg video, #home-demo .hd-thread-bg img { height: 100%; width: 100%; object-fit: cover; }
#home-demo .hd-thread-veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.66) 50%,
    rgba(255, 255, 255, 0.82) 100%);
}
#home-demo #hdThread .bubble-guest { background: rgba(255, 255, 255, 0.92); border: 1px solid var(--color-hairline); }

/* =============================================================================
   home11 · vertical playbooks + accreditation seals
   ============================================================================= */
.hv-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem 0.5625rem;
  border-radius: 9999px;
  background: var(--color-brand-wash);
  color: var(--color-brand-deep);
  font-size: 0.65625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hv-panel { animation: homeViewIn 240ms ease both; }

.hv-seal { display: flex; flex-direction: column; align-items: center; }
.hv-seal svg { height: 150px; width: 150px; filter: drop-shadow(0 14px 28px rgba(79, 70, 229, 0.18)); transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1); }
.hv-seal:hover svg { transform: translateY(-4px) rotate(2deg); }
@media (prefers-reduced-motion: reduce) {
  .hv-mod:hover, .hv-seal:hover svg { transform: none; }
}

/* =============================================================================
   home14 · premium OS module cards in the vertical playbooks
   Same size, same content - richer surface, gradient hairline, layered light.
   ============================================================================= */
.hv-mod {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid transparent;
  /* layered surface: corner glow + porcelain body in the padding box,
     indigo-tinted gradient hairline in the border box */
  background:
    radial-gradient(120% 80% at var(--hv-x, 85%) -10%, rgba(129, 140, 248, 0.12), transparent 52%) padding-box,
    linear-gradient(180deg, #ffffff 0%, #fdfdff 100%) padding-box,
    linear-gradient(165deg, rgba(79, 70, 229, 0.28), rgba(30, 27, 75, 0.07) 38%, rgba(124, 58, 237, 0.2) 100%) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(16, 18, 35, 0.05),
    0 16px 40px -22px rgba(30, 27, 75, 0.18);
  transition: box-shadow 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
html[dir="rtl"] .hv-mod { --hv-x: 15%; }
/* gradient beam along the top edge - resting sliver, full sweep on hover */
.hv-mod::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #818cf8, #4f46e5 45%, #7c3aed 80%, #a78bfa);
  box-shadow: 0 1px 10px rgba(79, 70, 229, 0.45);
  transform: scaleX(0.26);
  transform-origin: var(--hv-o, left);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}
html[dir="rtl"] .hv-mod::before { --hv-o: right; }
.hv-mod:hover::before, .hv-mod:focus-within::before { transform: scaleX(1); }
/* soft light sweeping across the card on hover */
.hv-mod::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(129, 140, 248, 0.13) 50%, transparent 68%);
  transform: translateX(-130%) skewX(-8deg);
  transition: transform 750ms ease;
  pointer-events: none;
}
html[dir="rtl"] .hv-mod::after { transform: translateX(130%) skewX(8deg); }
.hv-mod:hover::after { transform: translateX(130%) skewX(-8deg); }
html[dir="rtl"] .hv-mod:hover::after { transform: translateX(-130%) skewX(8deg); }
.hv-mod:hover, .hv-mod:focus-within {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(79, 70, 229, 0.35),
    0 10px 22px -14px rgba(79, 70, 229, 0.35),
    0 30px 64px -26px rgba(79, 70, 229, 0.42);
}
/* type + chips respond with the card */
.hv-mod h4 { position: relative; transition: color 220ms ease; }
.hv-mod:hover h4 { color: var(--color-brand-deep); }
.hv-chip {
  border: 1px solid rgba(79, 70, 229, 0.16);
  background: linear-gradient(180deg, rgba(238, 240, 251, 0.9), rgba(228, 231, 250, 0.9));
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.hv-mod:hover .hv-chip {
  border-color: transparent;
  background: linear-gradient(135deg, #4f46e5, #6d5ae8);
  color: #fff;
  box-shadow: 0 6px 14px -8px rgba(79, 70, 229, 0.55);
}
/* integrations line reads as the card's technical footnote */
.hv-mod .mono {
  display: block;
  padding-top: 0.6875rem;
  border-top: 1px dashed rgba(30, 27, 75, 0.12);
  transition: color 220ms ease, border-color 220ms ease;
}
.hv-mod:hover .mono { border-top-color: rgba(79, 70, 229, 0.28); }
/* KPI line: dot marker that brightens with the card */
.hv-mod > p:last-child { display: flex; align-items: baseline; gap: 0.4375rem; }
.hv-mod > p:last-child::before {
  content: "";
  flex: none;
  align-self: center;
  height: 6px;
  width: 6px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #818cf8, #4f46e5);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.18);
  transition: box-shadow 240ms ease;
}
.hv-mod:hover > p:last-child::before { box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.3); }

@media (prefers-reduced-motion: reduce) {
  .hv-mod { transition: box-shadow 320ms ease; }
  .hv-mod::before, .hv-mod::after { transition: none; }
  .hv-mod::after { display: none; }
  .hv-mod:hover, .hv-mod:focus-within { transform: none; }
}

/* ----------------------------------------------------------------------------
   hero VSL - poster with a centered play control, click to play with sound
   ---------------------------------------------------------------------------- */
.vsl-play {
  position: absolute;
  inset: 0;
  margin: auto;
  display: grid;
  place-items: center;
  height: 84px;
  width: 84px;
  border-radius: 9999px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.22), 0 24px 56px -18px rgba(30, 27, 75, 0.65);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}
.vsl-play svg { height: 34px; width: 34px; margin-inline-start: 4px; }
.vsl-play:hover { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.28), 0 28px 64px -18px rgba(79, 70, 229, 0.75); }
.vsl-play::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 9999px;
  border: 2px solid rgba(99, 102, 241, 0.55);
  animation: vslRing 2.2s ease-out infinite;
}
@keyframes vslRing {
  0% { transform: scale(0.9); opacity: 0.9; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .vsl-play::after { animation: none; } }

/* ----------------------------------------------------------------------------
   home8-viz - animated communication vignette (replaces the QR)
   ---------------------------------------------------------------------------- */
.home8-viz { position: relative; height: 190px; width: 190px; margin-inline: auto; }
.home8-viz-pulse {
  position: absolute; inset: 22px; border-radius: 9999px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.16), transparent 65%);
  animation: h8pulse 3.2s ease-in-out infinite;
}
@keyframes h8pulse { 0%, 100% { transform: scale(0.92); opacity: 0.8; } 50% { transform: scale(1.08); opacity: 1; } }
.home8-viz-ring { position: absolute; border-radius: 9999px; border: 1.5px dashed rgba(79, 70, 229, 0.22); }
.home8-viz-ring-a { inset: 8px; }
.home8-viz-ring-b { inset: 34px; border-color: rgba(79, 70, 229, 0.14); }
.home8-viz-core {
  position: absolute; inset: 0; margin: auto; height: 74px; width: 74px;
  display: grid; place-items: center; border-radius: 24px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  box-shadow: 0 18px 40px -14px rgba(79, 70, 229, 0.55);
}
.home8-viz-core svg { position: absolute; inset: 0; margin: auto; height: 44px; width: 44px; color: rgba(255, 255, 255, 0.22); }
.home8-viz-dots { position: relative; display: flex; gap: 5px; }
.home8-viz-dots i { height: 7px; width: 7px; border-radius: 9999px; background: #fff; animation: h8type 1.2s ease-in-out infinite; }
.home8-viz-dots i:nth-child(2) { animation-delay: 0.15s; }
.home8-viz-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes h8type { 0%, 60%, 100% { transform: translateY(0); opacity: 0.6; } 30% { transform: translateY(-5px); opacity: 1; } }
.home8-viz-orbit { position: absolute; inset: 8px; animation: h8spin 16s linear infinite; }
.home8-viz-orbit-b { inset: 8px; animation-duration: 22s; animation-direction: reverse; }
.home8-viz-orbit-c { inset: 34px; animation-duration: 26s; }
@keyframes h8spin { to { transform: rotate(360deg); } }
.home8-viz-sat {
  position: absolute; top: -17px; left: 50%; margin-left: -17px;
  display: grid; place-items: center; height: 34px; width: 34px; border-radius: 9999px;
  background: #fff; border: 1px solid var(--color-hairline); color: var(--c, #4f46e5);
  box-shadow: 0 8px 20px -8px rgba(16, 18, 35, 0.25);
  animation: h8spin 16s linear infinite reverse; /* keep icons upright */
}
.home8-viz-orbit-b .home8-viz-sat { top: auto; bottom: -17px; animation: h8spin 22s linear infinite; }
.home8-viz-orbit-c .home8-viz-sat { top: 50%; left: -17px; margin: -17px 0 0 0; animation: h8spin 26s linear infinite reverse; }
.home8-viz-sat svg { height: 15px; width: 15px; }
@media (prefers-reduced-motion: reduce) {
  .home8-viz-pulse, .home8-viz-dots i, .home8-viz-orbit, .home8-viz-sat { animation: none; }
}

/* enlarged, standalone communication vignette */
.home8-viz-lg { height: 300px; width: 300px; }
.home8-viz-lg .home8-viz-core { height: 108px; width: 108px; border-radius: 32px; }
.home8-viz-lg .home8-viz-core svg { height: 62px; width: 62px; }
.home8-viz-lg .home8-viz-dots i { height: 9px; width: 9px; }
.home8-viz-lg .home8-viz-sat { height: 44px; width: 44px; top: -22px; margin-left: -22px; }
.home8-viz-lg .home8-viz-orbit-b .home8-viz-sat { top: auto; bottom: -22px; }
.home8-viz-lg .home8-viz-orbit-c .home8-viz-sat { top: 50%; left: -22px; margin: -22px 0 0 0; }
.home8-viz-lg .home8-viz-sat svg { height: 19px; width: 19px; }
@media (min-width: 1024px) { .home8-viz-lg { height: 340px; width: 340px; } }
