.an-features { display: none; }

.svc-wrap--wide { width: min(1280px, calc(100% - 32px)); }

.svc-laptop {
  position: relative;
  z-index: 1;
  width: min(420px, 94%);
  display: grid;
  justify-items: center;
}
.svc-laptop__lid {
  width: 100%;
  padding: 10px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(160deg, #2a2d34, #121316);
  box-shadow: 0 28px 50px rgba(29,45,80,.28);
}
.svc-laptop__screen {
  border-radius: 6px;
  overflow: hidden;
  background: #f4f6fa;
  aspect-ratio: 16 / 10;
}
.svc-laptop__base {
  width: 112%;
  height: 12px;
  margin-top: -1px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #c5c8d0, #9ea3ae);
  box-shadow: 0 10px 18px rgba(29,45,80,.16);
}
.svc-an-ui {
  height: 100%;
  padding: 10px 12px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 7px;
  font-size: 9px;
  color: #1d1d1f;
}
.svc-an-ui__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 750;
}
.svc-an-ui__top span {
  color: #0071e3;
  font-weight: 750;
}
.svc-an-ui__kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.svc-an-ui__kpi > div {
  padding: 6px 7px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-an-ui__kpi small { display: block; color: #8a8a93; margin-bottom: 2px; }
.svc-an-ui__kpi strong { font-size: 11px; color: #0071e3; }
.svc-an-ui__chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  align-items: end;
  min-height: 0;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-an-ui__chart i {
  display: block;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: #0071e3;
}
.svc-an-ui__row {
  display: flex;
  justify-content: space-between;
  padding: 5px 7px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  font-weight: 700;
}

.an-stage {
  display: grid;
  grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) minmax(160px, 200px);
  gap: 18px;
  align-items: stretch;
}
.an-stage__frame { min-width: 0; }
.an-callouts {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 12px;
  padding: 8px 0;
}
.an-callout {
  appearance: none;
  position: relative;
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(29,29,31,.14);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(29,45,80,.06);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.an-callout:hover,
.an-callout.is-active {
  border-color: rgba(0,113,227,.45);
  box-shadow: 0 8px 20px rgba(0,113,227,.12);
  transform: translateY(-1px);
}
.an-callout__title {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -.02em;
  color: #1d1d1f;
  line-height: 1.25;
}
.an-callout__text {
  font-size: 12px;
  color: #6e6e73;
  line-height: 1.3;
}
.an-callouts--left .an-callout { padding-right: 18px; }
.an-callouts--right .an-callout { padding-left: 18px; }
.an-callouts--left .an-callout::after,
.an-callouts--right .an-callout::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #0071e3;
  transform: translateY(-50%);
}
.an-callouts--left .an-callout::after { right: -18px; }
.an-callouts--right .an-callout::after { left: -18px; }
.an-callouts--left .an-callout::before,
.an-callouts--right .an-callout::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #0071e3;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.an-callouts--left .an-callout::before { right: -22px; }
.an-callouts--right .an-callout::before { left: -22px; }
.an-callout.is-active::before { background: #0071e3; }
[data-an-target].is-spot-on {
  outline: 2px solid rgba(0,113,227,.55);
  outline-offset: 4px;
  border-radius: 10px;
  box-shadow: 0 0 0 6px rgba(0,113,227,.1);
}

@media (max-width: 1100px) {
  .an-stage {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .an-callouts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
  }
  .an-callout { flex: 1 1 160px; }
  .an-callouts--left .an-callout::before,
  .an-callouts--right .an-callout::before,
  .an-callouts--left .an-callout::after,
  .an-callouts--right .an-callout::after {
    display: none;
  }
  .an-callouts--left { order: 2; }
  .an-stage__frame { order: 1; }
  .an-callouts--right { order: 3; }
}

/* Analytics interactive demo — Lumo light */
.an-demo {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.14);
  box-shadow: 0 8px 20px rgba(29,45,80,.08);
  display: grid;
  gap: 14px;
}
.an-demo__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(29,29,31,.12);
}
.an-demo__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.an-demo__brand b {
  font-size: 15px;
  letter-spacing: -.02em;
}
.an-demo__brand span {
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  background: #e8f1fc;
  color: #0071e3;
  border: 1px solid rgba(0,113,227,.25);
  font-size: 11px;
  font-weight: 750;
}
.an-demo__tabs {
  display: flex;
  gap: 0;
  border: 1px solid rgba(29,29,31,.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.an-demo__tabs button {
  appearance: none;
  border: 0;
  border-right: 1px solid rgba(29,29,31,.12);
  background: #fff;
  color: #6e6e73;
  min-height: 36px;
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.an-demo__tabs button:last-child { border-right: 0; }
.an-demo__tabs button.is-active {
  background: #0071e3;
  color: #fff;
}
.an-demo__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}
.an-demo label {
  display: grid;
  gap: 5px;
  color: #6e6e73;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.an-demo input[type="text"],
.an-demo input[type="date"] {
  min-width: 140px;
  border: 1px solid rgba(29,29,31,.18);
  border-radius: 8px;
  padding: 9px 11px;
  background: #fff;
  color: #1d1d1f;
  font: inherit;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.an-demo__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.an-demo__chip {
  appearance: none;
  border: 1px solid rgba(29,29,31,.16);
  background: #fff;
  color: #1d1d1f;
  border-radius: 8px;
  min-height: 34px;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.an-demo__chip.is-active {
  background: #0071e3;
  border-color: #0071e3;
  color: #fff;
}
.an-demo__kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.an-demo__kpi > div {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(29,29,31,.1);
  background: #f7f9fc;
  text-align: center;
}
.an-demo__kpi small {
  display: block;
  color: #6e6e73;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.an-demo__kpi strong {
  font-size: 22px;
  letter-spacing: -.03em;
  color: #0071e3;
}
.an-demo__pane { display: none; }
.an-demo__pane.is-active { display: grid; gap: 14px; }
.an-demo__chart {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(29,29,31,.1);
  background: #f7f9fc;
}
.an-demo__chart-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 750;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.an-demo__bars {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
  height: 180px;
}
.an-demo__bars > span {
  display: block;
  height: var(--h, 20%);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #5aa8ff, #0071e3);
  min-height: 4px;
}
.an-demo__bars-meta {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
  color: #8a8a93;
  font-size: 10px;
  text-align: center;
}
.an-demo__dash {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
}
.an-demo__labels {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(29,29,31,.1);
  background: #fff;
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow: auto;
}
.an-demo__labels label {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 650;
  color: #1d1d1f;
  cursor: pointer;
}
.an-demo__labels input { width: auto; margin: 0; }
.an-demo__pies {
  display: grid;
  gap: 12px;
}
.an-demo__pie-card {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(29,29,31,.1);
  background: #f7f9fc;
}
.an-demo__pie {
  width: 140px;
  height: 140px;
  margin: 8px auto;
  border-radius: 50%;
  background: conic-gradient(#0071e3 0 42%, #5aa8ff 42% 68%, #93c5fd 68% 86%, #dbeafe 86% 100%);
  box-shadow: inset 0 0 0 28px #f7f9fc;
}
.an-demo__legend {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: #6e6e73;
}
.an-demo__legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.an-demo__table-wrap {
  overflow: auto;
  border-radius: 10px;
  border: 1px solid rgba(29,29,31,.12);
}
.an-demo table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.an-demo th,
.an-demo td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(29,29,31,.08);
}
.an-demo th {
  background: #f4f6fa;
  color: #6e6e73;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.an-demo tr:last-child td { border-bottom: 0; }
.an-demo__utm {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,113,227,.22);
  background: #eef5fd;
  display: grid;
  gap: 10px;
}
.an-demo__utm h3 {
  margin: 0;
  font-size: 13px;
  color: #0071e3;
  letter-spacing: -.01em;
}
.an-demo__utm-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.an-demo__utm-row input {
  width: 100%;
  min-width: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}
.an-demo__btn {
  appearance: none;
  border: 0;
  border-radius: 8px;
  min-height: 40px;
  padding: 0 16px;
  background: #0071e3;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.an-demo__btn--ghost {
  background: #fff;
  color: #1d1d1f;
  border: 1px solid rgba(29,29,31,.18);
}
.an-demo__note {
  margin: 0;
  color: #6e6e73;
  font-size: 12px;
}
.an-features {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  border: 1px solid rgba(29,29,31,.14);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.an-features li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border-bottom: 1px solid rgba(29,29,31,.1);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
}
.an-features li:last-child { border-bottom: 0; }
.an-features li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 2px;
  background: #0071e3;
}

/* Home catalog laptop / phone */
.catalog-card__media--live {
  display: grid;
  place-items: center;
  padding: 18px 16px 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,113,227,.14), transparent 40%),
    linear-gradient(165deg, #eaf2ff, #f3f6fb);
}
.catalog-card__media--live::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.55), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(0,113,227,.18), transparent 36%);
}
.catalog-card__media--live > * {
  position: relative;
  z-index: 1;
}
.catalog-card__media--phone {
  aspect-ratio: 16 / 9;
  padding: 12px 14px 10px;
  overflow: hidden;
  place-items: center;
}
.catalog-card__media--bots {
  background:
    radial-gradient(ellipse 70% 60% at 70% 25%, rgba(64,156,255,.35), transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 85%, rgba(120,90,255,.12), transparent 50%),
    linear-gradient(155deg, #d8e9ff 0%, #eef4fb 48%, #f7f9fc 100%);
}
.catalog-card__media--funnel {
  aspect-ratio: 16 / 9;
  padding: 16px 18px;
  background:
    radial-gradient(ellipse 65% 55% at 30% 20%, rgba(255,180,90,.28), transparent 55%),
    radial-gradient(ellipse 55% 50% at 85% 75%, rgba(0,113,227,.2), transparent 50%),
    linear-gradient(160deg, #1a2233 0%, #243049 55%, #1c2538 100%);
}
.catalog-card__media--blast {
  background:
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(52,199,89,.22), transparent 50%),
    radial-gradient(ellipse 50% 45% at 10% 90%, rgba(0,113,227,.18), transparent 45%),
    linear-gradient(165deg, #0f141c 0%, #171e2a 50%, #121820 100%);
}
.catalog-card__media--analytics {
  background:
    radial-gradient(ellipse 55% 50% at 20% 25%, rgba(120,160,255,.3), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,200,180,.12), transparent 45%),
    linear-gradient(160deg, #e8eef8 0%, #f4f6fa 45%, #dfe8f5 100%);
}
.home-phone.svc-phone {
  width: auto;
  height: calc(100% - 4px);
  max-height: 100%;
  aspect-ratio: 9 / 17.5;
  border: 2px solid #111114;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 18px 36px rgba(20,40,80,.28),
    0 2px 0 rgba(255,255,255,.2) inset;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.home-phone--bots {
  transform: rotate(-7deg) translateY(2px);
  box-shadow:
    0 22px 40px rgba(20,50,110,.32),
    0 0 0 1px rgba(255,255,255,.08);
}
.home-phone.svc-phone::before {
  display: none;
}
.home-phone .svc-phone__head,
.home-phone .svc-phone__screen {
  position: relative;
  z-index: 1;
}
.home-phone .svc-phone__notch {
  display: none;
}
.home-phone .svc-phone__head {
  padding: 8px 8px 4px;
  gap: 5px;
  border-bottom: 1px solid rgba(29,29,31,.06);
  background: #fff;
}
.home-phone .svc-phone__avatar {
  width: 15px;
  height: 15px;
}
.home-phone .svc-phone__avatar img {
  width: 8px;
  height: 8px;
}
.home-phone .svc-phone__meta b,
.home-phone .svc-phone__head b {
  font-size: 7.5px;
}
.home-phone .svc-phone__status {
  font-size: 6.5px;
}
.home-phone .svc-phone__screen {
  padding: 4px 6px 5px;
  gap: 2px;
  max-height: none;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-content: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(0,113,227,.05), transparent 42%),
    #f4f6fa;
  border-radius: 0;
}
.home-phone .svc-phone__screen > .svc-phone-bar {
  margin-top: auto;
}
.home-phone .svc-bubble {
  padding: 4px 6px 3px;
  font-size: 6.5px;
  border-radius: 9px;
  line-height: 1.25;
  max-width: 90%;
  box-shadow: 0 1px 1px rgba(29,45,80,.05);
}
.home-phone .svc-bubble__time {
  margin-top: 1px;
  font-size: 5px;
}
.home-phone .svc-phone__msg {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  width: max-content;
  max-width: 90%;
  align-self: flex-start;
}
.home-phone .svc-phone__msg .svc-bubble {
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}
.home-phone .svc-phone__msg .svc-phone__btns {
  contain: inline-size;
  gap: 2px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  margin-top: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.home-phone .svc-phone__msg .svc-phone__btns--stack {
  grid-auto-flow: row;
  grid-auto-columns: unset;
}
.home-phone .svc-phone__msg .svc-phone__btn {
  min-height: 14px;
  min-width: 0;
  width: 100%;
  padding: 2px 4px;
  border-radius: 7px;
  font-size: 5.5px;
  white-space: nowrap;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fff;
  color: #0071e3;
  border: 1px solid rgba(0,113,227,.22);
  box-shadow: none;
  box-sizing: border-box;
}
.home-phone .svc-phone-card {
  padding: 4px 5px;
  border-radius: 7px;
  gap: 2px;
}
.home-phone .svc-phone-card__kicker { font-size: 5.5px; }
.home-phone .svc-phone-card__title { font-size: 7px; }
.home-phone .svc-phone-card__text { font-size: 6.5px; }
.home-phone .svc-phone-card__price { font-size: 7.5px; }
.home-phone .svc-phone-card__nav { font-size: 5.5px; }
.home-phone .svc-phone-promo {
  gap: 2px;
}
.home-phone .svc-phone-promo span {
  min-height: 14px;
  border-radius: 4px;
  font-size: 6px;
}
.home-phone .svc-phone-bar {
  margin-top: 2px;
  padding-top: 2px;
  gap: 2px;
}
.home-phone .svc-phone-bar__attach,
.home-phone .svc-phone-bar__emoji {
  width: 11px;
  height: 11px;
  font-size: 7px;
}
.home-phone .svc-phone-bar__input {
  min-height: 13px;
  font-size: 5.5px;
  padding: 0 6px;
  border-radius: 10px;
  background: #fff;
}
.home-phone .svc-phone-bar__send {
  width: 13px;
  height: 13px;
  box-shadow: 0 2px 5px rgba(0,113,227,.25);
}
.home-phone .svc-phone-bar__send svg {
  width: 7px;
  height: 7px;
}

.home-stage--funnel {
  width: min(100%, 320px);
  transform: rotate(2deg);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}
.home-funnel--premium {
  border-radius: 16px;
  padding: 12px 12px 10px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    #121925;
  border: 1px solid rgba(255,255,255,.12);
  color: #e8edf7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.home-funnel--premium .home-funnel__top span {
  color: #6ec8ff;
  background: rgba(0,113,227,.22);
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 7px;
}
.home-funnel--premium .home-funnel__nodes span {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: #d7e0f0;
  position: relative;
}
.home-funnel--premium .home-funnel__nodes span:nth-child(1) {
  background: linear-gradient(180deg, rgba(0,113,227,.35), rgba(0,113,227,.12));
  border-color: rgba(110,180,255,.35);
}
.home-funnel--premium .home-funnel__nodes span:nth-child(4) {
  background: linear-gradient(180deg, rgba(255,170,70,.35), rgba(255,170,70,.1));
  border-color: rgba(255,190,100,.35);
}
.home-funnel--premium .home-funnel__split > div {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.home-funnel--premium .home-funnel__split small { color: #8b95a8; }
.home-funnel--premium .home-funnel__split b {
  font-size: 12px;
  letter-spacing: -.02em;
}
.home-funnel--premium .home-funnel__end {
  background: linear-gradient(90deg, #0071e3, #3aa0ff);
  box-shadow: 0 8px 18px rgba(0,113,227,.35);
}

.home-laptop {
  width: min(100%, 340px);
  display: grid;
  justify-items: center;
}
.home-laptop__lid {
  width: 100%;
  padding: 8px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(160deg, #2a2d34, #121316);
  box-shadow: 0 16px 28px rgba(29,45,80,.22);
}
.home-laptop__screen {
  border-radius: 4px;
  overflow: hidden;
  background: #f4f6fa;
  aspect-ratio: 16 / 10;
}
.home-laptop__base {
  width: 108%;
  height: 10px;
  margin-top: -1px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #c5c8d0, #9ea3ae);
  box-shadow: 0 8px 14px rgba(29,45,80,.14);
}
.home-laptop--dark {
  transform: rotate(-3deg);
  filter: drop-shadow(0 20px 32px rgba(0,0,0,.45));
}
.home-laptop--dark .home-laptop__lid {
  background: linear-gradient(160deg, #1a1e26, #0a0c10);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
}
.home-laptop--dark .home-laptop__screen {
  background: #0e1218;
}
.home-laptop--dark .home-laptop__base {
  background: linear-gradient(180deg, #3a3f4a, #1e222a);
}
.home-laptop--slate {
  transform: rotate(3.5deg);
  filter: drop-shadow(0 18px 30px rgba(30,50,90,.28));
}
.home-laptop--slate .home-laptop__lid {
  background: linear-gradient(160deg, #3a4458, #1c2433);
}
.home-laptop--slate .home-laptop__screen {
  background: #f2f5fa;
}
.home-laptop--slate .home-laptop__base {
  background: linear-gradient(180deg, #aeb6c6, #7f8796);
}

.home-blast {
  height: 100%;
  padding: 8px 10px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 6px;
  font-size: 8px;
  color: #1d1d1f;
}
.home-blast__top {
  display: flex;
  justify-content: space-between;
  font-weight: 750;
}
.home-blast__top span { color: #34c759; }
.home-blast__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.home-blast__stats > div {
  padding: 5px 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.home-blast__stats small { display: block; color: #8a8a93; margin-bottom: 1px; }
.home-blast__stats strong { font-size: 10px; }
.home-blast__table {
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  overflow: hidden;
}
.home-blast__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr .7fr;
  gap: 4px;
  padding: 4px 6px;
  border-top: 1px solid rgba(29,29,31,.06);
  align-items: center;
}
.home-blast__row:first-child {
  border-top: 0;
  background: #f7f9fc;
  color: #8a8a93;
  font-weight: 700;
}
.home-blast__row .is-run { color: #0071e3; font-weight: 750; }
.home-blast__row .is-ok { color: #1f7a3f; font-weight: 750; }
.home-blast__btns {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}
.home-blast__btns i {
  min-height: 16px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #eef2f8;
  font-style: normal;
  font-weight: 750;
}
.home-blast__btns .is-primary {
  background: #0071e3;
  color: #fff;
}
.home-blast--dark {
  color: #e6ebf4;
  background:
    radial-gradient(circle at 100% 0, rgba(52,199,89,.12), transparent 40%),
    #10151d;
}
.home-blast--dark .home-blast__stats > div,
.home-blast--dark .home-blast__table,
.home-blast--dark .home-blast__btns i {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  color: #dbe3f0;
}
.home-blast--dark .home-blast__stats small,
.home-blast--dark .home-blast__row:first-child {
  color: #8b95a8;
  background: rgba(255,255,255,.03);
}
.home-blast--dark .home-blast__row {
  border-top-color: rgba(255,255,255,.06);
}
.home-blast--dark .home-blast__row .is-run { color: #6ec8ff; }
.home-blast--dark .home-blast__row .is-ok { color: #5dde8a; }
.home-blast--dark .home-blast__btns .is-primary {
  background: linear-gradient(90deg, #1f9d4b, #34c759);
  color: #fff;
  box-shadow: 0 6px 14px rgba(52,199,89,.3);
}

.home-bot {
  height: 100%;
  padding: 8px 10px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
  font-size: 8px;
  color: #1d1d1f;
  align-content: start;
}
.home-bot__top {
  display: flex;
  justify-content: space-between;
  font-weight: 750;
}
.home-bot__top span { color: #34c759; }
.home-bot__msg {
  max-width: 88%;
  padding: 6px 8px;
  border-radius: 10px;
  line-height: 1.35;
  margin-bottom: 4px;
}
.home-bot__msg.is-bot {
  background: #eef2f8;
  justify-self: start;
}
.home-bot__msg.is-user {
  background: #0071e3;
  color: #fff;
  justify-self: end;
}
.home-bot__btns {
  display: flex;
  gap: 4px;
  margin-top: auto;
}
.home-bot__btns i {
  flex: 1;
  min-height: 18px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: #eef2f8;
  font-style: normal;
  font-weight: 750;
}
.home-bot__btns .is-primary {
  background: #0071e3;
  color: #fff;
}

.home-funnel {
  height: 100%;
  padding: 8px 10px;
  display: grid;
  gap: 8px;
  align-content: start;
  font-size: 8px;
  color: #1d1d1f;
}
.home-funnel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 750;
}
.home-funnel__top span {
  color: #0071e3;
  font-weight: 750;
}
.home-funnel__nodes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}
.home-funnel__nodes span {
  padding: 8px 4px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.1);
  text-align: center;
  font-weight: 750;
}
.home-funnel__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.home-funnel__split > div {
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.1);
}
.home-funnel__split small {
  display: block;
  color: #8a8a93;
  margin-bottom: 2px;
}
.home-funnel__end {
  padding: 8px;
  border-radius: 8px;
  background: #0071e3;
  color: #fff;
  text-align: center;
  font-weight: 750;
}

.home-an {
  height: 100%;
  padding: 8px 10px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 6px;
  font-size: 8px;
  color: #1d1d1f;
}
.home-an__top {
  display: flex;
  justify-content: space-between;
  font-weight: 750;
}
.home-an__top span { color: #0071e3; }
.home-an__kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.home-an__kpi > div {
  padding: 5px 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.home-an__kpi small { display: block; color: #8a8a93; margin-bottom: 1px; }
.home-an__kpi strong { font-size: 10px; color: #0071e3; }
.home-an__chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  align-items: end;
  min-height: 0;
  padding: 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.home-an__chart i {
  display: block;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: #0071e3;
}
.home-an__row {
  display: flex;
  justify-content: space-between;
  padding: 5px 7px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  font-weight: 700;
}
.home-an--rich {
  background:
    radial-gradient(circle at 0 0, rgba(0,113,227,.08), transparent 45%),
    #f7f9fc;
}
.home-an--rich .home-an__kpi > div {
  box-shadow: 0 4px 10px rgba(29,45,80,.05);
}
.home-an--rich .home-an__chart {
  background: linear-gradient(180deg, #fff, #f3f7ff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.home-an--rich .home-an__chart i {
  background: linear-gradient(180deg, #5aa8ff, #0071e3);
  box-shadow: 0 4px 8px rgba(0,113,227,.25);
}
.home-an--rich .home-an__row {
  background: linear-gradient(90deg, #eaf3ff, #fff);
  border-color: rgba(0,113,227,.14);
  color: #0071e3;
}

@media (max-width: 980px) {
  .an-demo__kpi { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .an-demo__dash { grid-template-columns: 1fr; }
  .an-demo__utm-row { grid-template-columns: 1fr; }
  .an-demo__bars { height: 140px; }
  .home-phone--bots,
  .home-laptop--dark,
  .home-laptop--slate,
  .home-stage--funnel {
    transform: none;
  }
}
