.ti-demo-notice-open {
  overflow: hidden;
}

.ti-demo-notice {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 16px;
  background: rgba(13, 26, 43, 0.38);
  color: #14222f;
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, Arial, sans-serif;
  animation: ti-demo-scrim-in 70ms ease-out both;
}

.ti-demo-notice__card {
  width: min(440px, calc(100vw - 32px));
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid #d7dee4;
  border-top: 3px solid #0b6ea3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(20, 34, 47, 0.12);
  animation: ti-demo-card-in 70ms ease-out both;
}

.ti-demo-notice__heading {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.ti-demo-notice__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(55, 159, 255, 0.3);
  border-radius: 8px;
  background: #020b1d;
  box-shadow: 0 6px 16px rgba(7, 91, 190, 0.16);
}

.ti-demo-notice__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ti-demo-notice__eyebrow {
  display: block;
  margin-bottom: 2px;
  color: #557084;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.ti-demo-notice h2 {
  margin: 0;
  color: #14222f;
  font-family: Bahnschrift, "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.ti-demo-notice p {
  margin: 14px 0 18px;
  color: #566472;
  font-size: 13px;
  line-height: 1.45;
}

.ti-demo-notice__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 0 16px;
  border: 1px solid #0d78ad;
  border-radius: 6px;
  background: #0d78ad;
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.ti-demo-notice__action:hover {
  border-color: #095f8b;
  background: #095f8b;
}

.ti-demo-notice__action:focus-visible {
  outline: 2px solid #0b6ea3;
  outline-offset: 3px;
}

.ti-demo-notice.is-leaving {
  animation: ti-demo-scrim-out 70ms ease-in both;
}

.ti-demo-notice.is-leaving .ti-demo-notice__card {
  animation: ti-demo-card-out 70ms ease-in both;
}

@keyframes ti-demo-scrim-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ti-demo-scrim-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes ti-demo-card-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ti-demo-card-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .ti-demo-notice,
  .ti-demo-notice__card,
  .ti-demo-notice.is-leaving,
  .ti-demo-notice.is-leaving .ti-demo-notice__card {
    animation-duration: 0.01ms;
  }
}
