

:root {
  --snl-ink-50: #f4f9fb;
  --snl-ink-100: #e8f1f5;
  --snl-ink-200: #d3e2e9;
  --snl-ink-300: #b3c9d4;
  --snl-ink-400: #86a3b2;
  --snl-ink-500: #547484;
  --snl-ink-600: #486877;
  --snl-ink-700: #35505d;
  --snl-ink-800: #243b46;
  --snl-ink-900: #0e2530;
  --snl-ink-950: #00171f;

  --snl-brand-50: #eff8ff;
  --snl-brand-100: #daf0fc;
  --snl-brand-200: #b6e2f9;
  --snl-brand-300: #7fcdf2;
  --snl-brand-500: #0092d6;
  --snl-brand-600: #0077b6;
  --snl-brand-700: #005f95;
  --snl-brand-800: #004a76;
  --snl-brand-900: #003459;


  --snl-sky: #00a8e8;
  --snl-ocean: #0077b6;
  --snl-navy: #003459;
  --snl-ink: #0e2530;
  --snl-line: #d3e2e9;
  --snl-mist: #f4f9fb;
  --snl-white: #ffffff;
  --snl-warn: #f59e0b;
  --snl-good: #16a34a;
  --snl-bad: #dc2626;

  --snl-font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --snl-radius: 20px;
  --snl-shadow: 0 30px 80px -20px rgb(0 23 31 / 0.45);
  --snl-bar-h: 60px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }
}

body.snl-tour-page {
  margin: 0;
  min-height: 100%;
  font-family: var(--snl-font);
  color: var(--snl-ink-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 480px at 80% -10%, var(--snl-brand-100), transparent 60%),
    radial-gradient(700px 420px at 5% 10%, #e6f7fd, transparent 60%),
    #ffffff;
  display: grid;
  place-items: center;
  padding: clamp(0px, 2vw, 24px);
}


body.snl-tour-page[data-embedded="true"] {
  background: #fff;
  padding: 0;
  place-items: stretch;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--snl-brand-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.snl-tour__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}



.snl-tour {
  position: relative;
  width: min(1080px, 100%);
  height: min(720px, 100dvh - 2 * clamp(0px, 2vw, 24px));
  min-height: 480px;
  display: grid;
  grid-template-columns: 42% 1fr;
  grid-template-rows: var(--snl-bar-h) 1fr auto;
  grid-template-areas:
    "bar bar"
    "stage chat"
    "rail rail";
  background: #fff;
  border-radius: var(--snl-radius);
  box-shadow: 0 0 0 1px rgb(0 168 232 / 0.18), var(--snl-shadow);
  overflow: hidden;
  font-size: 15px;
}

body[data-embedded="true"] .snl-tour {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}


.snl-tour__bar,
.snl-tour__stage,
.snl-tour__chat,
.snl-tour__rail {
  min-width: 0;
  min-height: 0;
}



.snl-tour__bar {
  grid-area: bar;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.9rem 0 1rem;
  border-bottom: 1px solid var(--snl-ink-200);
  background: #fff;
  z-index: 2;
}


.snl-tour__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  overflow: hidden;
  perspective: 520px;
}

.snl-tour__mark {
  height: 30px;
  width: auto;
  flex: none;
}


@keyframes snl-tour-mark-arrive {
  from {
    transform: rotateY(-360deg);
  }
  to {
    transform: rotateY(0deg);
  }
}

.snl-tour__mark.is-arriving {
  animation: snl-tour-mark-arrive 900ms cubic-bezier(0.22, 0.8, 0.24, 1) both;
}

.snl-tour__name {
  font-weight: 750;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}


.snl-tour__scripted {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--snl-ink-50);
  border: 1px solid var(--snl-ink-200);
  color: var(--snl-ink-600);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.snl-tour__scripted svg {
  width: 12px;
  height: 12px;
}


.snl-tour__scripted-short {
  display: none;
}

@media (max-width: 759px) {
  .snl-tour__scripted-short {
    display: inline;
  }
}

.snl-tour__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: none;
}

.snl-tour__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 38px;
  padding: 0 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--snl-ink-200);
  background: #fff;
  color: var(--snl-ink-700);
  font-weight: 650;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.snl-tour__btn:hover {
  background: var(--snl-ink-50);
  border-color: var(--snl-ink-300);
  transform: translateY(-1px);
}

.snl-tour__btn:active {
  transform: translateY(1px) scale(0.99);
}

.snl-tour__btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}


.snl-tour__btn--pause .i-resume,
.snl-tour__btn--pause .i-replay,
.snl-tour__btn--pause[data-state="paused"] .i-pause,
.snl-tour__btn--pause[data-state="waiting"] .i-pause,
.snl-tour__btn--pause[data-state="ended"] .i-pause,
.snl-tour__btn--pause[data-state="ended"] .i-resume {
  display: none;
}

.snl-tour__btn--pause[data-state="paused"] .i-resume,
.snl-tour__btn--pause[data-state="waiting"] .i-resume,
.snl-tour__btn--pause[data-state="ended"] .i-replay {
  display: block;
}


.snl-tour__try {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 38px;
  padding: 0 1.05rem;
  border-radius: 10px;
  background: var(--snl-brand-600);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 6px 16px -6px rgb(0 119 182 / 0.7);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.snl-tour__try:hover {
  background: var(--snl-brand-700);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgb(0 119 182 / 0.8);
}

.snl-tour__try:active {
  transform: translateY(1px) scale(0.99);
}

.snl-tour__try svg {
  width: 16px;
  height: 16px;
}

.snl-tour__close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--snl-ink-600);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.snl-tour__close:hover {
  background: var(--snl-ink-100);
  color: var(--snl-ink-900);
}

.snl-tour__close:focus-visible {
  border-radius: 50%;
}

.snl-tour__close svg {
  width: 18px;
  height: 18px;
}


.snl-tour__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: transparent;
}

.snl-tour__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--snl-brand-600), var(--snl-sky));
  transition: width 0.45s ease;
}



.snl-tour__stage {
  grid-area: stage;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.25rem 1.5rem 1.4rem;
  color: #fff;
  background:
    radial-gradient(520px 320px at 20% 10%, rgb(0 168 232 / 0.22), transparent 62%),
    linear-gradient(160deg, var(--snl-brand-900) 0%, var(--snl-ink-900) 62%, var(--snl-ink-950) 100%);
  overflow: hidden;
}


.snl-tour__stage::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto;
  height: 80%;
  background: radial-gradient(480px 260px at 60% 50%, rgb(0 168 232 / 0.28), transparent 66%);
  filter: blur(26px);
  pointer-events: none;
  animation: snl-tour-drift 22s ease-in-out infinite alternate;
}

@keyframes snl-tour-drift {
  from {
    transform: translate3d(-4%, 0, 0);
  }
  to {
    transform: translate3d(5%, 4%, 0);
  }
}

.snl-tour__scene {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  aspect-ratio: 3 / 2;
  flex: none;
}

.snl-tour__scene > svg {
  width: 100%;
  height: 100%;
}


.snl-tour__scene.is-entering > svg {
  animation: snl-tour-scene-in 0.55s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}

@keyframes snl-tour-scene-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


.snl-tour[data-status="paused"] .snl-tour__scene > svg *,
.snl-tour[data-status="paused"] .snl-tour__stage::before {
  animation-play-state: paused;
}

.snl-tour__stage-text {
  position: relative;
  text-align: center;
  min-height: 3.6rem;
}

.snl-tour__stage-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--snl-brand-300);
  margin-bottom: 0.3rem;
}

.snl-tour__stage-title {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.snl-tour__caption {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.78);
}

.snl-tour__stage-text.is-entering .snl-tour__stage-title,
.snl-tour__stage-text.is-entering .snl-tour__caption {
  animation: snl-tour-rise 0.45s ease both;
}

.snl-tour__stage-text.is-entering .snl-tour__caption {
  animation-delay: 0.08s;
}



.snl-tour__chat {
  grid-area: chat;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--snl-ink-50);
}


.snl-tour__log:focus-visible {
  outline: 3px solid var(--snl-brand-600);
  outline-offset: -3px;
}

.snl-tour__log {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.1rem 1.25rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--snl-ink-300) transparent;
}

.snl-tour__log::-webkit-scrollbar {
  width: 8px;
}

.snl-tour__log::-webkit-scrollbar-thumb {
  background: var(--snl-ink-300);
  border-radius: 999px;
}

.snl-tour__msg {
  max-width: 86%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  animation: snl-tour-rise 0.35s ease both;
}

@keyframes snl-tour-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.snl-tour__msg--user {
  align-self: flex-end;
  background: var(--snl-brand-600);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.snl-tour__msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--snl-ink-200);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgb(14 37 48 / 0.05);
}

.snl-tour__msg--bot strong {
  color: var(--snl-brand-700);
}

.snl-tour__msg--typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 0.75rem 0.9rem;
}

.snl-tour__msg--typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--snl-ink-400);
  animation: snl-tour-blink 1.3s infinite;
}

.snl-tour__msg--typing i:nth-child(2) {
  animation-delay: 0.18s;
}

.snl-tour__msg--typing i:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes snl-tour-blink {
  0%,
  60%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.snl-tour[data-status="paused"] .snl-tour__msg--typing i {
  animation-play-state: paused;
}


.snl-tour__divider {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.35rem 0 0.1rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--snl-brand-50);
  border: 1px solid var(--snl-brand-200);
  color: var(--snl-brand-800);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: snl-tour-rise 0.35s ease both;
}

.snl-tour__divider svg {
  width: 14px;
  height: 14px;
}


.snl-tour__proof {
  align-self: flex-start;
  max-width: 86%;
  animation: snl-tour-rise 0.35s ease both;
}

.snl-tour__proof table {
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--snl-ink-200);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.85rem;
  box-shadow: 0 1px 2px rgb(14 37 48 / 0.05);
}

.snl-tour__proof th,
.snl-tour__proof td {
  padding: 0.45rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--snl-ink-100);
}

.snl-tour__proof th {
  background: var(--snl-ink-50);
  color: var(--snl-ink-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.snl-tour__proof tr:last-child td {
  border-bottom: 0;
}

.snl-tour__proof td:not(:first-child),
.snl-tour__proof th:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.snl-tour__proof tbody tr {
  animation: snl-tour-rise 0.35s ease both;
}

.snl-tour__proof tbody tr:nth-child(2) {
  animation-delay: 0.12s;
}

.snl-tour__proof tbody tr:nth-child(3) {
  animation-delay: 0.24s;
}

.snl-tour__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.snl-tour__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--snl-brand-200);
  color: var(--snl-brand-800);
  font-size: 0.82rem;
  font-weight: 600;
  animation: snl-tour-rise 0.35s ease both;
}

.snl-tour__chips li:nth-child(2) {
  animation-delay: 0.1s;
}

.snl-tour__chips li:nth-child(3) {
  animation-delay: 0.2s;
}

.snl-tour__chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--snl-sky);
}

.snl-tour__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--snl-brand-900);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.snl-tour__badge svg {
  width: 14px;
  height: 14px;
  color: var(--snl-sky);
}


.snl-tour__end {
  align-self: stretch;
  margin-top: 0.4rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--snl-brand-800), var(--snl-brand-600));
  color: #fff;
  box-shadow: 0 18px 40px -18px rgb(0 119 182 / 0.7);
  animation: snl-tour-rise 0.45s ease both;
}

.snl-tour__end h2 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.snl-tour__end p {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: rgb(255 255 255 / 0.85);
}

.snl-tour__end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.snl-tour__end .snl-tour__try {
  background: #fff;
  color: var(--snl-brand-800);
  box-shadow: 0 8px 20px -8px rgb(0 23 31 / 0.5);
}

.snl-tour__end .snl-tour__try:hover {
  background: var(--snl-brand-50);
}

.snl-tour__end .snl-tour__btn {
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.3);
  color: #fff;
}

.snl-tour__end .snl-tour__btn:hover {
  background: rgb(255 255 255 / 0.18);
}

.snl-tour__end-note {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  color: rgb(255 255 255 / 0.75);
}


.snl-tour__composer {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem 0.85rem;
  background: var(--snl-ink-50);
}

.snl-tour__composer-field {
  flex: 1 1 auto;
  min-width: 0;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--snl-ink-300);
  color: var(--snl-ink-400);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.snl-tour__composer-mic {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--snl-ink-300);
  color: var(--snl-ink-600);
}

.snl-tour__composer-mic svg {
  width: 18px;
  height: 18px;
}

.snl-tour__composer-send {
  flex: none;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0 0.95rem;
  border-radius: 10px;
  background: var(--snl-brand-600);
  color: #fff;
  font-weight: 650;
  font-size: 0.9rem;
}



.snl-tour__rail {
  grid-area: rail;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.6rem;
  border-top: 1px solid var(--snl-ink-200);
  background: #fff;
  z-index: 2;
}

.snl-tour__rail-list {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0 0.2rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.snl-tour__rail-list::-webkit-scrollbar {
  display: none;
}

.snl-tour__rail-list li {
  flex: 1 0 auto;
  scroll-snap-align: center;
}

.snl-tour__rail-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  min-width: 52px;
  padding: 0.45rem 0.35rem 0.5rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--snl-ink-500);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.snl-tour__rail-btn:hover {
  background: var(--snl-ink-50);
  color: var(--snl-ink-800);
}

.snl-tour__rail-btn[data-visited="true"] {
  color: var(--snl-brand-700);
}

.snl-tour__rail-btn[aria-current="step"] {
  background: var(--snl-brand-50);
  color: var(--snl-brand-800);
}

.snl-tour__rail-btn[aria-current="step"] .snl-tour__rail-icon {
  animation: snl-tour-pop 0.45s cubic-bezier(0.22, 0.8, 0.24, 1) both;
}

@keyframes snl-tour-pop {
  from {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}


.snl-tour__rail-btn::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--snl-brand-600);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.snl-tour__rail-btn[aria-current="step"]::after {
  transform: scaleX(1);
}

.snl-tour__rail-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.snl-tour__rail-icon svg {
  width: 20px;
  height: 20px;
}

.snl-tour__rail-label {
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.snl-tour__rail-step {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--snl-ink-200);
  border-radius: 50%;
  background: #fff;
  color: var(--snl-ink-700);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.snl-tour__rail-step:hover {
  background: var(--snl-ink-50);
  border-color: var(--snl-ink-300);
}

.snl-tour__rail-step:focus-visible {
  border-radius: 50%;
}

.snl-tour__rail-step svg {
  width: 18px;
  height: 18px;
}




.snl-tour__script {
  grid-column: 1 / -1;
  grid-row: 2 / -1;
  list-style: none;
  margin: 0;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  display: grid;
  gap: 2rem;
}

.tour-live .snl-tour__script,
.tour-live .snl-tour__end-template {
  display: none;
}

.snl-tour__stage,
.snl-tour__chat,
.snl-tour__rail,
.snl-tour__btn--pause {
  display: none;
}


.snl-tour {
  height: auto;
  min-height: 0;
}

.tour-live .snl-tour__stage {
  display: flex;
}

.tour-live .snl-tour__chat {
  display: flex;
}

.tour-live .snl-tour__rail {
  display: flex;
}

.tour-live .snl-tour__btn--pause {
  display: inline-flex;
}

.tour-live .snl-tour {
  height: min(720px, 100vh - 2 * clamp(0px, 2vw, 24px));
  height: min(720px, 100dvh - 2 * clamp(0px, 2vw, 24px));
  min-height: 480px;
}

.tour-live .snl-tour__script {
  overflow-y: auto;
}


.snl-tour__end-template {
  margin-top: 1rem;
}


.snl-tour__chapter {
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  column-gap: 1.5rem;
  row-gap: 0;
  align-items: start;
}

.snl-tour__chapter > * {
  grid-column: 2;
}

.snl-tour__chapter > .snl-tour__scene-svg {
  grid-column: 1;
  grid-row: 1 / span 40;
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--snl-brand-900), var(--snl-ink-950));
  padding: 0.75rem;
}

.snl-tour__chapter-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.snl-tour__chapter-name svg {
  width: 20px;
  height: 20px;
  color: var(--snl-brand-600);
  flex: none;
}

.snl-tour__chapter-caption {
  color: var(--snl-ink-500);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.snl-tour__exchange {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.snl-tour__exchange .snl-tour__msg,
.snl-tour__exchange .snl-tour__proof {
  animation: none;
}

.snl-tour__end-template {
  grid-column: 1 / -1;
}



@media (max-width: 759px) {
  body.snl-tour-page {
    padding: 0;
    place-items: stretch;
  }


  .snl-tour,
  .tour-live .snl-tour {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: 1fr;
    grid-template-rows: var(--snl-bar-h) minmax(0, 31dvh) minmax(0, 1fr) auto;
    grid-template-areas:
      "bar"
      "stage"
      "chat"
      "rail";
    font-size: 14px;
  }


  html:not(.tour-live) .snl-tour {
    height: auto;
    display: block;
  }

  .snl-tour__bar {
    padding: 0 0.5rem 0 0.75rem;
  }


  .snl-tour__scripted {
    padding: 0.2rem 0.4rem;
    font-size: 0.66rem;
  }


  .snl-tour__scripted-long {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .snl-tour__btn--pause .snl-tour__btn-label,
  .snl-tour__rail-label {
    display: none;
  }

  .snl-tour__btn--pause,
  .tour-live .snl-tour__btn--pause {
    width: 38px;
    padding: 0;
  }

  .snl-tour__try {
    padding: 0 0.8rem;
  }

  .snl-tour__stage {
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .snl-tour__scene {
    width: 46%;
    max-width: none;
    margin: 0;
  }

  .snl-tour__stage-text {
    flex: 1 1 auto;
    text-align: left;
    min-height: 0;
  }

  .snl-tour__stage-title {
    font-size: 1.1rem;
  }

  .snl-tour__caption {
    font-size: 0.85rem;
  }

  .snl-tour__log {
    padding: 0.9rem 0.9rem 0.6rem;
  }

  .snl-tour__composer {
    padding: 0.5rem 0.9rem max(0.6rem, env(safe-area-inset-bottom, 0px));
  }

  .snl-tour__rail {
    padding: 0.4rem 0.4rem max(0.4rem, env(safe-area-inset-bottom, 0px));
  }

  .snl-tour__rail-list li {
    flex: 0 0 auto;
  }

  .snl-tour__rail-btn {
    min-width: 46px;
    padding: 0.4rem 0.3rem;
  }

  .snl-tour__chapter {
    grid-template-columns: 1fr;
  }

  .snl-tour__chapter > *,
  .snl-tour__chapter > .snl-tour__scene-svg {
    grid-column: 1;
    grid-row: auto;
  }

  .snl-tour__chapter > .snl-tour__scene-svg {
    margin-bottom: 0.75rem;
  }
}


@media (max-width: 419px) {
  .snl-tour__name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}


@media (max-width: 359px) {
  .snl-tour__bar {
    gap: 0.4rem;
    padding: 0 0.4rem 0 0.6rem;
  }

  .snl-tour__brand {
    gap: 0.4rem;
  }

  .snl-tour__mark {
    height: 26px;
  }

  .snl-tour__name {
    font-size: 0.95rem;
  }

  .snl-tour__actions {
    gap: 0.3rem;
  }

  .snl-tour__try {
    padding: 0 0.7rem;
  }

  .snl-tour__try svg {
    display: none;
  }
}


@media (max-width: 759px) and (max-height: 460px) {
  .tour-live .snl-tour {
    grid-template-rows: var(--snl-bar-h) 0 minmax(0, 1fr) auto;
  }

  .tour-live .snl-tour__stage {
    display: none;
  }
}


@media (min-width: 760px) and (max-height: 560px) {
  .tour-live .snl-tour__scene {
    flex: 0 1 auto;
    min-height: 0;
    max-width: 300px;
  }

  .tour-live .snl-tour__stage {
    justify-content: flex-start;
    padding-block: 0.9rem;
  }
}



@media print {
  body.snl-tour-page {
    background: #fff;
    padding: 0;
    display: block;
  }

  .snl-tour {
    height: auto;
    display: block;
    box-shadow: none;
    border-radius: 0;
  }


  .snl-tour__bar,
  .tour-live .snl-tour__stage,
  .tour-live .snl-tour__chat,
  .tour-live .snl-tour__rail {
    display: none;
  }

  .tour-live .snl-tour__script,
  .tour-live .snl-tour__end-template {
    display: grid;
  }

  .snl-tour__chapter > .snl-tour__scene-svg {

    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}






.sc-hello__panel {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-hello-panel 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes sc-hello-panel {
  from { opacity: 0; transform: translateY(12px) scale(0.94); }
  to { opacity: 1; transform: none; }
}

.sc-hello__ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-hello-ring 1.6s ease-out 0.4s both;
}
@keyframes sc-hello-ring {
  0% { opacity: 0.7; transform: scale(0.55); }
  100% { opacity: 0; transform: scale(1.25); }
}

.sc-hello__mark {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-hello-mark 0.6s cubic-bezier(0.3, 1.4, 0.5, 1) 0.5s both;
}
@keyframes sc-hello-mark {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: none; }
}

.sc-hello__bubble {
  animation: sc-hello-bubble 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.9s both;
}
@keyframes sc-hello-bubble {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.sc-hello__caret {
  animation: sc-hello-caret 2s steps(1, end) 1.6s infinite;
}
@keyframes sc-hello-caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}



.sc-where__browser,
.sc-where__hosted,
.sc-where__phone {
  animation: sc-where-enter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.sc-where__hosted { animation-delay: 0.25s; }
.sc-where__phone { animation-delay: 0.5s; }
@keyframes sc-where-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.sc-where__link {
  animation:
    sc-where-link-enter 0.7s ease-out 0.6s both,
    sc-where-flow 2s linear infinite;
}
@keyframes sc-where-link-enter {
  from { opacity: 0; }
  to { opacity: 0.8; }
}
@keyframes sc-where-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -40; }
}

.sc-where__pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-where-pulse 4.8s ease-out infinite;
}
.sc-where__pulse--hosted { animation-delay: 1.6s; }
.sc-where__pulse--phone { animation-delay: 3.2s; }
@keyframes sc-where-pulse {
  0% { opacity: 0; transform: scale(0.3); }
  6% { opacity: 0.9; }
  26%, 100% { opacity: 0; transform: scale(1.5); }
}

.sc-where__digit {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-where-digit 4.8s ease-out infinite;
}
.sc-where__digit--1 { animation-delay: 1.7s; }
.sc-where__digit--2 { animation-delay: 1.85s; }
.sc-where__digit--3 { animation-delay: 2s; }
.sc-where__digit--4 { animation-delay: 2.15s; }
.sc-where__digit--5 { animation-delay: 2.3s; }
.sc-where__digit--6 { animation-delay: 2.45s; }
@keyframes sc-where-digit {
  0% { opacity: 0; transform: scale(0.3); }
  5% { opacity: 1; transform: scale(1.25); }
  8%, 88% { opacity: 1; transform: none; }
  94%, 100% { opacity: 0; transform: none; }
}



.sc-ask__bubble {
  animation: sc-ask-enter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes sc-ask-enter {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

.sc-ask__pulse {
  animation: sc-ask-pulse 5s linear infinite;
}
@keyframes sc-ask-pulse {
  from { stroke-dashoffset: 496; }
  to { stroke-dashoffset: 0; }
}

.sc-ask__db {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-ask-db 5s ease-in-out infinite;
}
@keyframes sc-ask-db {
  0%, 36%, 48%, 100% { transform: none; }
  42% { transform: scale(1.05); }
}

.sc-ask__table {
  animation: sc-ask-table 5s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}
@keyframes sc-ask-table {
  0%, 36% { opacity: 0; transform: translateY(36px); }
  48%, 94% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: none; }
}

.sc-ask__row {
  animation: 5s ease-out infinite;
}
.sc-ask__row--1 { animation-name: sc-ask-row-1; }
.sc-ask__row--2 { animation-name: sc-ask-row-2; }
.sc-ask__row--3 { animation-name: sc-ask-row-3; }
@keyframes sc-ask-row-1 {
  0%, 50% { opacity: 0; transform: translateX(-6px); }
  56%, 100% { opacity: 1; transform: none; }
}
@keyframes sc-ask-row-2 {
  0%, 58% { opacity: 0; transform: translateX(-6px); }
  64%, 100% { opacity: 1; transform: none; }
}
@keyframes sc-ask-row-3 {
  0%, 66% { opacity: 0; transform: translateX(-6px); }
  72%, 100% { opacity: 1; transform: none; }
}



.sc-honest__bubble {
  animation: sc-honest-enter 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes sc-honest-enter {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

.sc-honest__pulse {
  animation: sc-honest-pulse 5s linear infinite;
}
@keyframes sc-honest-pulse {
  from { stroke-dashoffset: 496; }
  to { stroke-dashoffset: 0; }
}

.sc-honest__db {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-honest-db 5s ease-in-out infinite;
}
@keyframes sc-honest-db {
  0%, 34%, 46%, 100% { transform: none; }
  40% { transform: scale(1.05); }
}

.sc-honest__no {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-honest-no 5s ease-out infinite;
}
@keyframes sc-honest-no {
  0%, 34% { opacity: 0; transform: scale(0.3); }
  42% { opacity: 1; transform: scale(1.12); }
  48%, 94% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: none; }
}

.sc-honest__card {
  animation: sc-honest-card 5s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}
@keyframes sc-honest-card {
  0%, 44% { opacity: 0; transform: translateY(36px); }
  56%, 94% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: none; }
}

.sc-honest__check {
  animation: sc-honest-check 5s ease-out infinite;
}
@keyframes sc-honest-check {
  0%, 56% { stroke-dashoffset: 56; }
  68%, 100% { stroke-dashoffset: 0; }
}



.sc-sops__glass {
  animation: sc-sops-sweep 5s ease-in-out infinite;
}
.sc-sops__hit {
  animation: sc-sops-hit 5s ease-in-out infinite;
}
.sc-sops__lift {
  opacity: 0;
  animation: sc-sops-lift 5s ease-in-out infinite;
}
.sc-sops__bubble {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-sops-pop 5s ease-in-out infinite;
}
.sc-sops__answer {
  animation: sc-sops-answer 5s ease-in-out infinite;
}

@keyframes sc-sops-sweep {
  0%, 60%, 100% { transform: translateY(0); }
  25% { transform: translateY(-40px); }
}
@keyframes sc-sops-hit {
  0%, 55%, 100% { opacity: 1; }
  25% { opacity: 0.35; }
}
@keyframes sc-sops-lift {
  0%, 60% { transform: translate(0, 0); opacity: 0; }
  64% { transform: translate(0, 0); opacity: 1; }
  84% { transform: translate(86px, -104px); opacity: 1; }
  90%, 100% { transform: translate(86px, -104px); opacity: 0; }
}
@keyframes sc-sops-pop {
  0%, 82%, 94%, 100% { transform: scale(1); }
  88% { transform: scale(1.05); }
}
@keyframes sc-sops-answer {
  0%, 60%, 100% { opacity: 1; }
  64%, 82% { opacity: 0.35; }
}



.sc-reach__pulse {
  stroke-dashoffset: 12;
  animation: sc-reach-pulse 2.4s linear infinite;
}
.sc-reach__pulse-2 {
  animation-delay: -0.8s;
}
.sc-reach__pulse-3 {
  animation-delay: -1.6s;
}
.sc-reach__ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-reach-ring 2.4s ease-out infinite;
}

@keyframes sc-reach-pulse {
  from { stroke-dashoffset: 12; }
  to { stroke-dashoffset: -84; }
}
@keyframes sc-reach-ring {
  0% { transform: scale(1); opacity: 0.4; }
  70%, 100% { transform: scale(1.22); opacity: 0; }
}



.sc-screen__frame {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-screen-frame 5s ease-in-out infinite;
}
.sc-screen__card {
  transform-box: fill-box;
  transform-origin: 0 0;
  animation: sc-screen-fly 5s ease-in-out infinite;
}
.sc-screen__slot {
  animation: sc-screen-slot 5s ease-in-out infinite;
}
.sc-screen__nokeep {
  stroke-dashoffset: 0;
  animation: sc-screen-nokeep 5s ease-in-out infinite;
}

@keyframes sc-screen-frame {
  0%, 70% { transform: scale(1); opacity: 1; }
  80%, 90% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes sc-screen-fly {
  0%, 12% { transform: translate(0, 0) scale(1, 1); opacity: 1; }
  46%, 72% { transform: translate(210px, -12px) scale(0.567, 1); opacity: 1; }
  80% { transform: translate(210px, -12px) scale(0.567, 1); opacity: 0; }
  92% { transform: translate(0, 0) scale(1, 1); opacity: 0; }
  100% { transform: translate(0, 0) scale(1, 1); opacity: 1; }
}
@keyframes sc-screen-slot {
  0%, 40%, 82%, 100% { opacity: 0.6; }
  48%, 72% { opacity: 1; }
}
@keyframes sc-screen-nokeep {
  0%, 44% { stroke-dashoffset: 0; }
  52% { stroke-dashoffset: 30; }
  66%, 100% { stroke-dashoffset: 0; }
}



.sc-readonly__shackle {
  transform: translateY(-6px);
  animation: sc-readonly-close 0.5s ease-in both;
}
.sc-readonly__shackle-1 { animation-delay: 0.3s; }
.sc-readonly__shackle-2 { animation-delay: 0.9s; }
.sc-readonly__shackle-3 { animation-delay: 1.5s; }

.sc-readonly__lock {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-readonly-click 0.4s ease-out both;
}
.sc-readonly__lock-1 { animation-delay: 0.7s; }
.sc-readonly__lock-2 { animation-delay: 1.3s; }
.sc-readonly__lock-3 { animation-delay: 1.9s; }

.sc-readonly__pencil,
.sc-readonly__bin {
  transform-box: fill-box;
  transform-origin: center;
}
.sc-readonly__pencil {
  animation: sc-readonly-push 4s ease-in-out infinite;
}
.sc-readonly__bin {
  animation: sc-readonly-push-back 4s ease-in-out infinite;
  animation-delay: -2s;
}
.sc-readonly__glass {
  animation: sc-readonly-welcome 4s ease-in-out infinite;
}
.sc-readonly__ok {
  opacity: 0;
  animation: sc-readonly-ok 4s ease-in-out infinite;
}

@keyframes sc-readonly-close {
  from { transform: translateY(-6px); }
  to { transform: translateY(0); }
}
@keyframes sc-readonly-click {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes sc-readonly-push {
  0%, 55%, 100% { transform: translateX(0) rotate(0deg); }
  35% { transform: translateX(60px) rotate(0deg); }
  42% { transform: translateX(46px) rotate(-10deg); }
}
@keyframes sc-readonly-push-back {
  0%, 55%, 100% { transform: translateX(0) rotate(0deg); }
  35% { transform: translateX(-58px) rotate(0deg); }
  42% { transform: translateX(-46px) rotate(10deg); }
}
@keyframes sc-readonly-welcome {
  0%, 100% { transform: translate(0, 0); }
  40%, 70% { transform: translate(30px, -16px); }
}
@keyframes sc-readonly-ok {
  0%, 38%, 78%, 100% { opacity: 0; }
  46%, 70% { opacity: 1; }
}





.sc-home__pulse {
  animation: sc-home-dial 2.6s ease-in-out infinite;
}

@keyframes sc-home-dial {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(52px);
    opacity: 0;
  }
}

.sc-home__led {
  animation: sc-home-blink 3s ease-in-out infinite;
}

.sc-home__led--2 {
  animation-delay: -1.5s;
}

@keyframes sc-home-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.sc-home__inbound {
  animation: sc-home-knock 4s ease-in-out infinite;
}

@keyframes sc-home-knock {
  0%,
  55% {
    transform: translateX(0);
    opacity: 0.55;
  }
  65% {
    transform: translateX(-7px);
    opacity: 0.9;
  }
  75% {
    transform: translateX(2px);
    opacity: 0.55;
  }
  100% {
    transform: translateX(0);
    opacity: 0.55;
  }
}

.sc-home__block {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-home-hold 4s ease-in-out infinite;
}

@keyframes sc-home-hold {
  0%,
  62% {
    transform: scale(1);
  }
  68% {
    transform: scale(1.12);
  }
  78%,
  100% {
    transform: scale(1);
  }
}





.sc-customers__brand,
.sc-customers__ring,
.sc-customers__rows {
  animation: sc-customers-active 6s linear infinite;
}

.sc-customers__reject {
  animation: sc-customers-bounce 6s ease-in-out infinite;
}

.sc-customers__brand--b,
.sc-customers__ring--b,
.sc-customers__rows--b,
.sc-customers__reject--c {
  animation-delay: -4s;
}

.sc-customers__brand--c,
.sc-customers__ring--c,
.sc-customers__rows--c,
.sc-customers__reject--a {
  animation-delay: -2s;
}

@keyframes sc-customers-active {
  0%,
  29% {
    opacity: 1;
  }
  33%,
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes sc-customers-bounce {
  0% {
    transform: translateX(-48px);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  16% {
    transform: translateX(-27px);
    opacity: 1;
  }
  22% {
    transform: translateX(-36px);
    opacity: 0.7;
  }
  28% {
    transform: translateX(-40px);
    opacity: 0;
  }
  33%,
  100% {
    transform: translateX(-48px);
    opacity: 0;
  }
}

.sc-customers__flow--a {
  animation: sc-customers-flow-a 6s ease-in-out infinite;
}

.sc-customers__flow--b {
  animation: sc-customers-flow-b 6s ease-in-out -4s infinite;
}

.sc-customers__flow--c {
  animation: sc-customers-flow-c 6s ease-in-out -2s infinite;
}

@keyframes sc-customers-flow-a {
  0% {
    transform: translate(-104px, -62px);
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  13% {
    transform: translate(0, 0);
  }
  21% {
    transform: translate(108px, -28px);
    opacity: 1;
  }
  25% {
    transform: translate(108px, -28px);
    opacity: 0;
  }
  29%,
  100% {
    transform: translate(-104px, -62px);
    opacity: 0;
  }
}

@keyframes sc-customers-flow-b {
  0% {
    transform: translate(-104px, -34px);
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  13% {
    transform: translate(0, 0);
  }
  21% {
    transform: translate(108px, -28px);
    opacity: 1;
  }
  25% {
    transform: translate(108px, -28px);
    opacity: 0;
  }
  29%,
  100% {
    transform: translate(-104px, -34px);
    opacity: 0;
  }
}

@keyframes sc-customers-flow-c {
  0% {
    transform: translate(-104px, -6px);
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  13% {
    transform: translate(0, 0);
  }
  21% {
    transform: translate(108px, -28px);
    opacity: 1;
  }
  25% {
    transform: translate(108px, -28px);
    opacity: 0;
  }
  29%,
  100% {
    transform: translate(-104px, -6px);
    opacity: 0;
  }
}





.sc-private__chat {
  animation: sc-private-chat 6s ease-in-out infinite;
}

@keyframes sc-private-chat {
  0%,
  52% {
    opacity: 1;
    transform: translateY(0);
  }
  64% {
    opacity: 0;
    transform: translateY(-6px);
  }
  86% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-private__close {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-private-press 6s ease-in-out infinite;
}

@keyframes sc-private-press {
  0%,
  46% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.75);
  }
  54%,
  100% {
    transform: scale(1);
  }
}

.sc-private__ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: sc-private-click 6s ease-out infinite;
}

@keyframes sc-private-click {
  0%,
  47% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 0.9;
    transform: scale(0.7);
  }
  60%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.sc-private__tally {
  animation: sc-private-page 6s linear infinite;
}

@keyframes sc-private-page {
  0%,
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.sc-private__mark--1 {
  animation: sc-private-tick-1 6s linear infinite;
}

.sc-private__mark--2 {
  animation: sc-private-tick-2 6s linear infinite;
}

.sc-private__mark--3 {
  animation: sc-private-tick-3 6s linear infinite;
}

.sc-private__mark--4 {
  animation: sc-private-tick-4 6s linear infinite;
}

@keyframes sc-private-tick-1 {
  0%,
  12% {
    opacity: 0;
  }
  15%,
  100% {
    opacity: 1;
  }
}

@keyframes sc-private-tick-2 {
  0%,
  29% {
    opacity: 0;
  }
  32%,
  100% {
    opacity: 1;
  }
}

@keyframes sc-private-tick-3 {
  0%,
  46% {
    opacity: 0;
  }
  49%,
  100% {
    opacity: 1;
  }
}

@keyframes sc-private-tick-4 {
  0%,
  66% {
    opacity: 0;
  }
  69%,
  100% {
    opacity: 1;
  }
}

.sc-private__cross {
  animation: sc-private-cross 6s ease-in-out infinite;
}

@keyframes sc-private-cross {
  0%,
  78% {
    stroke-dashoffset: 42;
  }
  90%,
  100% {
    stroke-dashoffset: 0;
  }
}

.sc-private__key {
  animation: sc-private-key 6s ease-in-out infinite;
}

@keyframes sc-private-key {
  0%,
  40% {
    transform: translateX(0);
  }
  50%,
  90% {
    transform: translateX(44px);
  }
  100% {
    transform: translateX(0);
  }
}

.sc-private__slot--a {
  animation: sc-private-slot-a 6s ease-in-out infinite;
}

.sc-private__slot--b {
  animation: sc-private-slot-b 6s ease-in-out infinite;
}

@keyframes sc-private-slot-a {
  0%,
  42% {
    opacity: 1;
  }
  50%,
  88% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes sc-private-slot-b {
  0%,
  42% {
    opacity: 0;
  }
  50%,
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



.sc-control__knob,
.sc-control__on,
.sc-control__tick,
.sc-control__slash,
.sc-control__revoke,
.sc-control__tally {
  transform-box: fill-box;
  transform-origin: center;
}

.sc-control__knob {
  animation: sc-control-flip 6s ease-in-out infinite;
}

.sc-control__on {
  animation: sc-control-dim 6s ease-in-out infinite;
}

.sc-control__knob--2,
.sc-control__on--2 {
  animation-delay: -4s;
}

.sc-control__knob--3,
.sc-control__on--3 {
  animation-delay: -2s;
}

.sc-control__tick {
  animation: sc-control-draw 0.5s ease-out both;
}

.sc-control__tick--1 {
  animation-delay: 0.2s;
}

.sc-control__tick--2 {
  animation-delay: 0.6s;
}

.sc-control__tick--3 {
  animation-delay: 1s;
}

.sc-control__slash {
  animation: sc-control-draw 0.4s ease-out 1.5s both;
}

.sc-control__revoke {
  animation: sc-control-press 6s ease-in-out infinite;
}

.sc-control__tally {
  animation: sc-control-count 6s linear infinite;
}

@keyframes sc-control-flip {
  0%,
  8%,
  28%,
  100% {
    transform: translateX(0);
  }
  12%,
  24% {
    transform: translateX(-22px);
  }
}

@keyframes sc-control-dim {
  0%,
  8%,
  28%,
  100% {
    opacity: 1;
  }
  12%,
  24% {
    opacity: 0;
  }
}

@keyframes sc-control-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes sc-control-press {
  0%,
  76%,
  86%,
  100% {
    transform: scale(1);
  }
  81% {
    transform: scale(0.95);
  }
}

@keyframes sc-control-count {
  0%,
  84% {
    opacity: 0;
  }
  90%,
  100% {
    opacity: 1;
  }
}



.sc-voice__wave,
.sc-voice__pulse,
.sc-voice__line,
.sc-voice__caret,
.sc-voice__ring {
  transform-box: fill-box;
  transform-origin: center;
}

.sc-voice__wave {
  animation: sc-voice-wave 2.4s ease-out infinite;
}

.sc-voice__wave--2 {
  animation-delay: -2.1s;
}

.sc-voice__wave--3 {
  animation-delay: -1.8s;
}

.sc-voice__pulse {
  animation: sc-voice-pulse 2.4s ease-in-out infinite;
}

.sc-voice__line {
  transform-origin: left center;
  animation: sc-voice-type 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.sc-voice__line--3 {
  animation-delay: 0.6s;
}

.sc-voice__line--4 {
  animation-delay: 1.3s;
}

.sc-voice__line--5 {
  animation-delay: 2s;
}

.sc-voice__caret {
  animation: sc-voice-blink 2s step-end infinite;
}

.sc-voice__ring {
  animation: sc-voice-ring 2.4s ease-out infinite;
}

@keyframes sc-voice-wave {
  0% {
    opacity: 0.25;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
  }
}

@keyframes sc-voice-pulse {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(28px);
    opacity: 0;
  }
}

@keyframes sc-voice-type {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes sc-voice-blink {
  0%,
  24% {
    opacity: 1;
  }
  25%,
  49% {
    opacity: 0;
  }
  50%,
  74% {
    opacity: 1;
  }
  75%,
  100% {
    opacity: 0;
  }
}

@keyframes sc-voice-ring {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(1.7);
    opacity: 0;
  }
}



.sc-start__card,
.sc-start__glow,
.sc-start__no,
.sc-start__tag,
.sc-start__spark {
  transform-box: fill-box;
  transform-origin: center;
}

.sc-start__card {
  animation: sc-start-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.sc-start__card--2 {
  animation-delay: 0.12s;
}

.sc-start__card--3 {
  animation-delay: 0.24s;
}

.sc-start__card--4 {
  animation-delay: 0.36s;
}

.sc-start__card--5 {
  animation-delay: 0.48s;
}

.sc-start__glow {
  animation: sc-start-glow 3s ease-in-out infinite;
}

.sc-start__no {
  animation: sc-start-stamp 4s ease-in-out infinite;
}

.sc-start__tag {
  transform-origin: 12% 50%;
  animation: sc-start-swing 4s ease-in-out infinite;
}

.sc-start__spark {
  animation: sc-start-spark 4s ease-in-out infinite;
}

.sc-start__spark--2 {
  animation-delay: -0.7s;
}

.sc-start__spark--3 {
  animation-delay: -1.4s;
}

.sc-start__spark--4 {
  animation-delay: -2.1s;
}

.sc-start__spark--5 {
  animation-delay: -2.8s;
}

.sc-start__spark--6 {
  animation-delay: -3.5s;
}

@keyframes sc-start-rise {
  from {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sc-start-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.45;
  }
}

@keyframes sc-start-stamp {
  0%,
  70%,
  86%,
  100% {
    transform: scale(1);
  }
  78% {
    transform: scale(1.15);
  }
}

@keyframes sc-start-swing {
  0%,
  100% {
    transform: rotate(-2.5deg);
  }
  50% {
    transform: rotate(2.5deg);
  }
}

@keyframes sc-start-spark {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  30%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

