.demo-banner {
  align-items: center;
  background: #f59e0b;
  color: #1f2937;
  display: flex;
  font-size: 13px;
  gap: 12px;
  justify-content: center;
  min-height: 38px;
  padding: 7px 16px;
  position: sticky;
  z-index: 100;
}

.demo-banner strong { text-transform: uppercase; }

.demo-toast {
  animation: demo-toast-in .18s ease-out;
  background: #111827;
  border: 1px solid rgba(245, 158, 11, .45);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .28);
  color: #f9fafb;
  font-size: 14px;
  max-width: min(520px, calc(100vw - 32px));
  padding: 14px 16px;
  position: fixed;
  right: 18px;
  top: 54px;
  z-index: 2000;
}

@keyframes demo-toast-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.demo-login-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 16px 0;
}

.demo-login-option {
  background: rgba(148, 163, 184, .08);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 7px;
  padding: 12px;
}

.demo-login-option > span {
  color: var(--muted);
  font-size: 12px;
}

.demo-login-option button {
  font-size: 12px;
  padding: 8px;
}

.demo-banner ~ .app-topbar { top: 38px; }
.demo-banner ~ .sidebar {
  height: calc(100vh - 38px);
  top: 38px;
}

@media (max-width: 720px) {
  .demo-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .demo-login-grid { grid-template-columns: 1fr; }
}

.demo-remote-lock {
  border-color: rgba(245, 158, 11, .35);
  margin-bottom: 16px;
}

.demo-remote-lock h1 {
  margin-bottom: 6px;
}

.demo-remote-showcase {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(320px, 420px) minmax(520px, 1fr);
  overflow: hidden;
}

.demo-remote-copy {
  align-content: start;
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.demo-remote-copy p {
  margin: 0;
}

.demo-remote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.demo-remote-points span {
  background: rgba(245, 158, 11, .11);
  border: 1px solid rgba(245, 158, 11, .24);
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.demo-remote-stills {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.demo-remote-still {
  background: radial-gradient(circle at 25% 10%, rgba(245, 158, 11, .22), transparent 30%), rgba(15, 23, 42, .45);
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 16px;
  margin: 0;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 10px;
}

.demo-remote-still img {
  aspect-ratio: 16 / 9;
  background: #020617;
  border-radius: 12px;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.demo-remote-still-featured img {
  max-height: min(52vh, 520px);
}

.demo-remote-still figcaption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 9px;
  text-align: center;
}

.demo-remote-still:not(.demo-remote-still-featured) img {
  max-height: min(28vh, 280px);
}

@media (max-width: 1180px) {
  .demo-remote-showcase { grid-template-columns: 1fr; }
}
