/* Prompt AI Keyboard — a still of the keyboard, for /guides/ pages.

   The homepage draws an animated version of this from an inline <style> block whose
   ids its own script owns. This is deliberately a separate, static copy rather than a
   shared extraction: nothing here transitions, cycles or is driven by JavaScript, so a
   guide page can never be broken by an edit to the hero's animation, or the reverse.

   Every custom property used below is already defined by guide.css with the same value. */

.mock{
  margin:0 auto;max-width:520px;
  background:#0B0B0E;
  border:1px solid var(--outline);border-radius:24px;
  padding:16px 14px 14px;box-shadow:0 24px 60px -28px rgba(108,75,246,.35);
  text-align:left;
}
.mock-field{
  background:var(--surface-2);border-radius:14px;padding:13px 16px;
  font-size:.95rem;color:var(--text-dim);min-height:64px;margin-bottom:14px;
  line-height:1.5;
}
.mock-field .cursor{
  display:inline-block;width:2px;height:1em;background:var(--violet-light);
  vertical-align:text-bottom;
}

/* row 1 — undo/redo, what the key is set to, the clipboard key */
.mock-bar{display:flex;align-items:center;gap:8px;margin-bottom:10px}
.mock-bar .tool-btn{
  width:42px;height:42px;border-radius:13px;background:#1C1C22;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;color:var(--text-faint);
}
.mock-bar .tool-btn.ctx{margin-left:auto}
.mode-readout{display:flex;align-items:center;gap:9px;flex:1;min-width:0}
.mode-readout .mr-label{color:var(--text-faint);font-size:.85rem;font-weight:600;flex-shrink:0}
.mode-readout .mr-name{font-size:.88rem;font-weight:700;color:var(--text);white-space:nowrap}

/* the one row above the keys. Fixed height, as in the keyboard itself: a row that
   resizes makes the whole keyboard jump mid-sentence. */
.mock-slot{position:relative;height:44px;margin-bottom:14px;padding:0 4px}
.slot-state{position:absolute;inset:0 32px;display:flex;align-items:center;gap:8px}
.slot-edge{
  position:absolute;top:50%;transform:translateY(-50%);
  width:28px;height:28px;border-radius:9px;
  display:flex;align-items:center;justify-content:center;color:var(--text-faint);
}
.slot-edge.gear{left:0}
.slot-edge.mic{right:0}
.slot-suggestions{justify-content:space-around}
.sugg{
  flex:1;text-align:center;font-size:.92rem;color:var(--text-dim);
  padding:6px 4px;border-radius:10px;
}
.sugg.pick{color:var(--text);font-weight:700}
.sugg + .sugg{border-left:1px solid rgba(155,125,255,.14)}

/* keys */
.mock-keys{display:flex;flex-direction:column;gap:8px}
.krow{display:flex;gap:6px;justify-content:center}
.key{
  flex:1;max-width:44px;height:48px;border-radius:13px;background:var(--surface-2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;font-weight:500;color:#ECECF0;
}
.key.wide{max-width:none;flex:1.5}
.key.space{max-width:none;flex:2.4}
.key.shift{background:var(--violet-light);color:#1A0B3D}
.key.enhance{
  flex:0 0 78px;max-width:none;width:78px;
  background:linear-gradient(135deg,var(--violet-light),#B9A5FF);
  color:#1A0B3D;
  box-shadow:0 0 22px 2px rgba(155,125,255,.4);
}

/* figure wrapper */
.mock-figure{margin:30px 0 34px}
.mock-figure figcaption{
  margin-top:16px;color:var(--text-faint);font-size:.92rem;line-height:1.65;text-align:center;
}

@media(max-width:520px){
  .mock{padding:13px 10px 11px}
  .key{max-width:34px;height:42px;border-radius:11px;font-size:1.02rem}
  .key.enhance{flex:0 0 62px;width:62px}
  .krow{gap:4px}
  .mock-bar .tool-btn{width:36px;height:36px;border-radius:11px}
}
