/* =====================================================================
 * SlasshyWispr — marketing site
 * layout.css   page composition, section rhythm, hero / spec / hotkey
 * ===================================================================== */

/* =====================================================================
 * Page shell
 * ===================================================================== */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg-void);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 80% -10%, var(--accent-live-faint) 0%, transparent 60%),
    var(--bg-void);
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' seed='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* every section shares this pattern */
.section {
  width: 100%;
  padding: clamp(56px, 7vw, 112px) clamp(20px, 4vw, 56px);
}
.section-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  width: 100%;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-line);
}
.section-head__eyebrow {
  flex: 0 0 auto;
}
.section-head__title {
  margin: 0;
  flex: 1 1 auto;
}
.section-head__meta {
  flex: 0 0 auto;
  text-align: right;
}

/* =====================================================================
 * Titlebar (top nav)
 * ===================================================================== */
.titlebar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: 0 clamp(20px, 4vw, 56px);
  height: 56px;
  background: oklch(13% 0.012 250 / 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-line);
}
.titlebar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.titlebar__logo-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.titlebar__logo-text {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 540, "SOFT" 30;
  font-weight: 540;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.titlebar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1 1 auto;
}
.titlebar__nav a {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  border-radius: var(--radius-input);
  transition: color var(--t-hover) var(--ease-out), background var(--t-hover) var(--ease-out);
  text-decoration: none;
}
.titlebar__nav a:hover,
.titlebar__nav a:focus-visible {
  color: var(--ink-primary);
  background: var(--bg-recess);
}
.titlebar__nav a[aria-current="page"] {
  color: var(--ink-primary);
}
.titlebar__nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent-live);
}

.titlebar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.titlebar__version {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-button);
  color: var(--ink-muted);
  transition: color var(--t-hover) var(--ease-out), background var(--t-hover) var(--ease-out);
}
.btn-nav:hover {
  color: var(--ink-primary);
  background: var(--bg-recess);
}
.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  height: 32px;
  border-radius: var(--radius-button);
  background: var(--accent-live);
  color: var(--accent-quiet-ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 550;
  text-decoration: none;
  transition: background var(--t-hover) var(--ease-out);
}
.btn-nav-primary:hover {
  background: oklch(70% 0.18 55);
}

.hero {
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: clamp(56px, 8vw, 112px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__copy { max-width: 56ch; position: relative; }
.hero__copy .t-display-1 { margin: 0 0 var(--space-6); position: relative; }
.hero__logo-inline {
  position: absolute;
  top: -12px;
  left: 185px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.hero__copy .t-lede { max-width: 48ch; margin-bottom: var(--space-8); }

.hero__copy-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.hero__spec-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-5);
  margin: 0;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  color: var(--ink-secondary);
  font-size: 12px;
  letter-spacing: 0;
}
.hero__spec-line > span { display: inline-flex; align-items: baseline; gap: 6px; }
.hero__spec-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--border-line);
  align-self: center;
}

/* ----- The actual-screenshot frame ----- */
.frame-app {
  position: relative;
  border-radius: var(--radius-modal);
  background: var(--bg-paper);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-1.4deg) rotateX(0.6deg);
  transition: transform 480ms var(--ease-out);
}
.frame-app::before {
  /* a faint moving highlight that subtly catches the "light" */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg,
    transparent 30%,
    oklch(95% 0.012 80 / 0.04) 50%,
    transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.frame-app:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }

.frame-app__titlebar {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: var(--bg-rail);
  border-bottom: 1px solid var(--border-line);
  gap: 10px;
}
.frame-app__titlebar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-live);
  box-shadow: 0 0 0 3px var(--accent-live-faint);
}
.frame-app__titlebar-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-secondary);
}
.frame-app__titlebar-meta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.frame-app__viewport {
  position: relative;
  background: var(--bg-void);
}
.frame-app__viewport img {
  width: 100%;
  display: block;
}

.frame-app__annotation {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: oklch(11% 0.010 245 / 0.84);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-secondary);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.frame-app__annotation .rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-live);
  box-shadow: 0 0 0 2px var(--accent-live-faint);
  animation: live-dot-pulse 1.6s var(--ease-out) infinite;
}

/* =====================================================================
 * Spec ledger — what it is, as a list
 * ===================================================================== */
.spec {
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
}
.spec__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
}
@media (max-width: 880px) { .spec__grid { grid-template-columns: 1fr; } }

.spec__lead { max-width: 56ch; }
.spec__lead .t-display-3 { margin: var(--space-3) 0 var(--space-5); }
.spec__lead .t-body { max-width: 48ch; }

.spec__quick-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-line);
}
.spec__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spec__stat-val {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 500, "SOFT" 20;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
}
.spec__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.ledger {
  border-top: 1px solid var(--border-line);
}
.ledger__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-6);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-line);
  align-items: baseline;
}
.ledger__label {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "wght" 460, "SOFT" 20;
  font-weight: 460;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink-primary);
}
.ledger__value {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-secondary);
  text-align: right;
  white-space: nowrap;
}

/* =====================================================================
 * Remotion showcase
 *   full-width section. The canvas lives here.
 * ===================================================================== */
.showcase { padding-top: clamp(64px, 8vw, 120px); }

.showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  align-items: end;
}
@media (max-width: 880px) { .showcase__head { grid-template-columns: 1fr; gap: var(--space-8); } }

.showcase__head .t-display-2 {
  margin: var(--space-3) 0 var(--space-5);
  max-width: 22ch;
}

/* The full-width composition canvas. The composition itself is built in showcase.css. */
.composition {
  position: relative;
  width: 100%;
  border-radius: var(--radius-modal);
  background:
    radial-gradient(1200px 700px at 70% 20%, oklch(74% 0.18 55 / 0.10) 0%, transparent 55%),
    var(--bg-void);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}

.composition__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--space-6);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-muted);
}
.composition__meta-actions {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

/* =====================================================================
 * Manifesto
 * ===================================================================== */
.manifesto {
  padding-top: clamp(72px, 10vw, 144px);
  padding-bottom: clamp(56px, 8vw, 112px);
  border-top: 1px solid var(--border-line);
}
.manifesto__body {
  max-width: 22ch;
  margin: var(--space-8) 0;
}
.manifesto__quote-mark {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 80;
  font-weight: 320;
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.6;
  color: var(--accent-live);
  margin-bottom: var(--space-2);
  height: 0.6em;
  width: 0.6em;
}
.manifesto__cite {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-line);
  margin-top: var(--space-10);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
}

/* =====================================================================
 * Hotkey grid
 * ===================================================================== */
.hotkeys__lead { max-width: 56ch; margin-bottom: var(--space-12); }
.hotkeys__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-line);
  border: 1px solid var(--border-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
@media (max-width: 880px) { .hotkeys__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hotkeys__grid { grid-template-columns: 1fr; } }

.hotkey {
  position: relative;
  padding: var(--space-6);
  background: var(--bg-paper);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 132px;
  transition: background var(--t-hover) var(--ease-out);
}
.hotkey:hover { background: var(--bg-card); }
.hotkey__row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hotkey__keys {
  display: flex;
  align-items: center;
  gap: 4px;
}
.key-cap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-weight: 480;
  font-size: 11px;
  background: var(--bg-recess);
  border: 1px solid var(--border-strong);
  color: var(--ink-secondary);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 0 var(--bg-recess), 0 0 0 1px var(--bg-recess);
}
.hotkey__desc .t-mono-sm { display: block; margin-bottom: 4px; }
.hotkey__desc .t-body { color: var(--ink-primary); font-size: 14px; }

/* =====================================================================
 * Pipeline timings — a small "console" showing STT / AI / TTS
 * ===================================================================== */
.pipeline {
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
}
.pipeline__galaxy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 880px) { .pipeline__galaxy { grid-template-columns: 1fr; } }

.pipeline__lead { max-width: 56ch; }

.pipeline__console {
  background: var(--bg-paper);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-secondary);
}
.pipeline__console-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-line);
}
.pipeline__console-head .rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-live);
  box-shadow: 0 0 0 2px var(--accent-live-faint);
  animation: live-dot-pulse 1.6s var(--ease-out) infinite;
}
.pipeline__console-head .t-mono { font-size: 11.5px; color: var(--ink-muted); }
.pipeline__console-rows {
  display: grid;
  grid-template-columns: 0 80px 1fr auto;
  gap: 6px 14px;
  padding: 14px 16px;
}
.pc-label { color: var(--ink-muted); font-size: 11.5px; padding-top: 4px; }
.pc-stage  { color: var(--ink-primary); font-weight: 480; }
.pc-bar    { position: relative; height: 4px; background: var(--bg-recess); border-radius: 2px; align-self: center; }
.pc-bar span { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 2px; background: var(--accent-live); }
.pc-time   { color: var(--ink-secondary); font-variant-numeric: tabular-nums; }

/* =====================================================================
 * Privacy — a quiet block, no banner
 * ===================================================================== */
.privacy {
  padding-top: clamp(56px, 7vw, 112px);
  padding-bottom: clamp(56px, 7vw, 112px);
}
.privacy__grid {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-12);
  border-top: 1px solid var(--border-line);
  padding-top: var(--space-10);
}
@media (max-width: 880px) {
  .privacy__grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
.privacy__grid .t-eyebrow {
  letter-spacing: 0.06em;
}
.privacy__grid .t-display-3 { margin: 0; max-width: 22ch; }

/* =====================================================================
 * Download (Get it)
 * ===================================================================== */
.get {
  padding-top: clamp(72px, 10vw, 144px);
  padding-bottom: clamp(72px, 10vw, 144px);
  border-top: 1px solid var(--border-line);
}
.get__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 880px) { .get__grid { grid-template-columns: 1fr; } }
.get__copy .t-display-2 { margin: var(--space-3) 0 var(--space-5); }
.get__copy .t-lede { max-width: 48ch; }
.get__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: right;
}
.get__meta .t-mono-sm { letter-spacing: 0.04em; }
.get__meta .t-mono {
  font-size: 12px;
  color: var(--ink-faint);
}

.get__primary {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: var(--space-8);
}
.get__primary-cta { flex: 1 1 auto; }

/* =====================================================================
 * Footer
 * ===================================================================== */
.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: var(--space-6);
  padding: var(--space-10) clamp(20px, 4vw, 56px) var(--space-12);
  border-top: 1px solid var(--border-line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-muted);
}
.footer__center { text-align: center; color: var(--ink-faint); }
.footer__right { text-align: right; }
.footer__right a { color: var(--ink-muted); transition: color var(--t-hover) var(--ease-out); }
.footer__right a:hover { color: var(--ink-primary); }
@media (max-width: 720px) {
  .footer { grid-template-columns: 1fr; gap: var(--space-3); text-align: left; }
  .footer__center, .footer__right { text-align: left; }
}

/* Visually hidden helper for screen-reader-only text */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Hero frame gets a hint cursor + focus ring on tab */
.frame-app {
  cursor: zoom-in;
  outline: none;
}
.frame-app:focus-visible {
  box-shadow: 0 0 0 2px var(--accent-live), var(--shadow-pop);
}

/* Hover-zoom pop-up */
.frame-zoom {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw;
  background: oklch(8% 0.012 250 / 0.78);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}
.frame-zoom.is-open {
  opacity: 1;
  pointer-events: auto;
}
body.frame-zoom-locked { overflow: hidden; }

.frame-zoom__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: oklch(15% 0.01 250 / 0.6);
  border: 1px solid var(--border-strong);
  color: var(--ink-secondary);
  cursor: pointer;
  transition: color 140ms var(--ease-out), background 140ms var(--ease-out), transform 140ms var(--ease-out);
  z-index: 2;
}
.frame-zoom__close:hover { color: var(--ink-primary); background: oklch(22% 0.01 250 / 0.8); transform: scale(1.05); }
.frame-zoom__close svg { width: 20px; height: 20px; }

.frame-zoom__card {
  position: relative;
  width: 50vw;
  max-width: 1280px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: var(--bg-paper);
  border: 1px solid var(--border-line);
  box-shadow: 0 32px 48px -16px oklch(0% 0 0 / 0.7),
              0 0 0 1px oklch(0% 0 0 / 0.4);
  overflow: hidden;
  transform: scale(0.96) translateY(8px);
  transition: transform 380ms var(--ease-out);
}
.frame-zoom.is-open .frame-zoom__card {
  transform: scale(1) translateY(0);
}

.frame-zoom__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-rail);
  border-bottom: 1px solid var(--border-line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-secondary);
  letter-spacing: 0.02em;
}
.frame-zoom__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-live);
  box-shadow: 0 0 0 3px var(--accent-live-faint);
  animation: live-dot-pulse 1.6s var(--ease-out) infinite;
}
.frame-zoom__name { flex: 0 1 auto; }
.frame-zoom__meta { margin-left: auto; color: var(--ink-muted); }

.frame-zoom__viewport {
  position: relative;
  background: var(--bg-void);
  overflow: visible;
}
.frame-zoom__viewport img {
  display: block;
  width: 100%;
  height: auto;
}

.frame-zoom__legend {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  background: var(--bg-rail);
  border-top: 1px solid var(--border-line);
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  font-size: 11px;
}

/* Annotation pins */
.frame-zoom__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
  cursor: default;
}
.frame-zoom__pin-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-live);
  box-shadow: 0 0 0 4px oklch(74% 0.18 55 / 0.25),
              0 0 16px oklch(74% 0.18 55 / 0.5);
  animation: live-dot-pulse 1.8s var(--ease-out) infinite;
  flex: 0 0 auto;
}
.frame-zoom__pin-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--accent-live);
  opacity: 0.35;
  animation: pin-ring 2.2s var(--ease-out) infinite;
}
@keyframes pin-ring {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.frame-zoom__pin-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-primary);
  background: oklch(8% 0.012 250 / 0.85);
  border: 1px solid var(--accent-live);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.frame-zoom__pin--hotkey .frame-zoom__pin-label,
.frame-zoom__pin--pipeline .frame-zoom__pin-label,
.frame-zoom__pin--log .frame-zoom__pin-label {
  transform: translateX(8px);
}
.frame-zoom__pin--sidebar .frame-zoom__pin-label {
  transform: translateX(8px);
}

@media (max-width: 720px) {
  .frame-zoom { padding: 0; }
  .frame-zoom__card { width: 100vw; max-height: 100vh; border-radius: 0; }
  .frame-zoom__pin-label { font-size: 9.5px; padding: 3px 7px; }
  .frame-zoom__close { top: 12px; right: 12px; width: 36px; height: 36px; }
}

