/* Sketch theme — pulls the REAL @jannah/ui token set + webfonts so these
   mockups are a faithful representation, not an approximation. Layout/chrome
   below is sketch-only (throwaway). The real system is the source of truth. */
@import "/ui/styles.css";

/* ── Sketch reset ─────────────────────────────────────────────────────────*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ── Sketch toolbar (variant + theme switch) ──────────────────────────────*/
.sk-toolbar {
  position: fixed;
  z-index: var(--z-toast);
  left: 50%;
  bottom: var(--space-5);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface-card) 86%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.sk-toolbar button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--text-secondary);
  background: transparent;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  min-height: 36px;
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.sk-toolbar button:hover {
  color: var(--text-primary);
}
.sk-toolbar button[aria-pressed="true"] {
  color: var(--on-primary);
  background: var(--primary);
}
.sk-toolbar .sk-div {
  width: 1px;
  height: 20px;
  background: var(--border-strong);
  margin: 0 var(--space-1);
}
.sk-toolbar .sk-theme[aria-pressed="true"] {
  color: var(--navy-700);
  background: var(--accent);
}

/* Only the active variant shows. */
.sk-variant {
  display: none;
}
.sk-variant.is-active {
  display: block;
}
