/* ============================================================
   Rise Academy — Immersive Scenarios (role-play in video module)
   Styles for 6 scenario screens. Companion: immersive.jsx
   ============================================================ */

:root {
  --accent:        #E8E2CE;
  --accent-soft:   rgba(232,226,206,0.18);
  --accent-strong: rgba(232,226,206,0.45);
  --bone-100:      #DDD6BE;
  --ink:           #1A1A1A;
  --ink-soft:      #2A2A2A;

  --warm-50:       #1F1B14;
  --warm-100:      #2A241B;
  --warm-paper:    #EDE4D0;
  --warm-paper-2:  #E2D6BB;

  --room-bg:       #0F0F0F;
  --room-surface:  #161616;
  --room-surface-2:#1F1F1F;
  --room-stroke:        rgba(245,245,245,0.10);
  --room-stroke-strong: rgba(245,245,245,0.18);
  --room-fg:        #F5F5F5;
  --room-fg-muted:  #9A9A9A;
  --room-fg-subtle: #5C5C5C;

  --danger:  #FF5A66;
  --warn:    #E8B26A;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #0a0a0a; font-family: var(--font-sans); color: #F5F5F5; -webkit-font-smoothing: antialiased; }
body { padding: 48px 24px 96px; }
button { font-family: inherit; cursor: pointer; }

/* ===== Doc shell ===== */
.doc { max-width: 1320px; margin: 0 auto; }
.doc-head { text-align: center; margin-bottom: 40px; }
.eyebrow { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: #9A9A9A; }
.doc-head h1 { font-size: 40px; font-weight: 800; letter-spacing: -.02em; margin: 6px 0 10px; }
.doc-head p { font-size: 14px; color: #9A9A9A; max-width: 680px; margin: 0 auto; line-height: 1.55; }
.link-card { display: inline-block; margin-top: 16px; padding: 10px 16px; border-radius: 14px; background: #1A1A1A; border: 1px solid #2A2A2A; color: #F5F5F5; font-size: 12px; }
.link-card a { color: var(--accent); font-weight: 700; text-decoration: none; border-bottom: 1px dashed rgba(232,226,206,.4); margin-left: 6px; }
.link-card a + a { margin-left: 10px; }

.section { margin-top: 56px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #1F1F1F; }
.section-head .l h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin: 4px 0 0; }
.section-head .l p { font-size: 13px; color: #9A9A9A; margin: 6px 0 0; max-width: 620px; line-height: 1.55; }
.section-head .r { font-size: 12px; color: #5C5C5C; font-family: var(--font-mono); letter-spacing: .05em; }

/* ===== Desktop frame ===== */
.dframe { width: 100%; border-radius: 18px; overflow: hidden; background: #161616; border: 1px solid #232323; box-shadow: 0 24px 60px rgba(0,0,0,.45); position: relative; }
.dframe-chrome { height: 36px; display: flex; align-items: center; gap: 10px; padding: 0 14px; background: #1A1A1A; border-bottom: 1px solid #232323; }
.dframe-chrome .dots { display: flex; gap: 6px; }
.dframe-chrome .dots i { width: 11px; height: 11px; border-radius: 50%; background: #2D2D2D; display: block; }
.dframe-chrome .url { flex: 1; text-align: center; font-size: 11px; color: #5C5C5C; letter-spacing: .02em; }
.dscreen-wrap { position: relative; width: 100%; aspect-ratio: 1480 / 920; overflow: hidden; background: var(--room-bg); }
.dscreen { position: absolute; left: 0; top: 0; width: 1480px; height: 920px; background: var(--room-bg); overflow: hidden; transform-origin: 0 0; }

/* ============================================================
   ROOM CHROME (top bar + dock) — reused by screens 3-6
   ============================================================ */
.im-topbar {
  position: absolute; left: 0; right: 0; top: 0; height: 72px;
  padding: 0 22px; display: flex; align-items: center; gap: 14px;
  background: rgba(16,16,16,0.92); border-bottom: 1px solid #1F1F1F;
  backdrop-filter: blur(12px); z-index: 5;
}
.im-brand { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.im-brand .mk { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 13px; font-weight: 900; }
.im-brand .sub { color: #6E6E6E; font-weight: 600; font-size: 12px; margin-left: 4px; }
.im-divider { width: 1px; height: 24px; background: #2A2A2A; }
.im-scene-meta { display: flex; align-items: center; gap: 10px; }
.im-scene-meta .ic { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); color: var(--ink); display: grid; place-items: center; }
.im-scene-meta .nm { font-size: 14px; font-weight: 700; letter-spacing: -.005em; }
.im-scene-meta .sub { font-size: 11px; color: #8A8A8A; font-family: var(--font-mono); margin-top: 1px; }

.im-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: #1A1A1A; border: 1px solid #2A2A2A; font-size: 12px; font-weight: 600; }
.im-pill.live { background: var(--accent-soft); border-color: var(--accent-strong); color: var(--accent); letter-spacing: .06em; text-transform: uppercase; font-size: 10px; font-weight: 700; }
.im-pill .ldot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: lpulse 1.6s ease-in-out infinite; }
@keyframes lpulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

.im-phase-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  background: #1A1A1A; border: 1px solid #2A2A2A;
}
.im-phase-pill .step { width: 22px; height: 22px; border-radius: 999px; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.im-phase-pill .lab { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: #8A8A8A; }
.im-phase-pill .nm { font-size: 12px; font-weight: 700; color: #F5F5F5; }

.im-timer-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 14px;
  background: #1A1A1A; border: 1px solid #2A2A2A;
  font-family: var(--font-mono);
}
.im-timer-chip .lab { font-family: var(--font-sans); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: #8A8A8A; }
.im-timer-chip .t { font-size: 14px; font-weight: 700; letter-spacing: -.01em; }
.im-timer-chip .sep { width: 1px; height: 12px; background: #2A2A2A; }
.im-timer-chip .total { font-size: 12px; color: #6E6E6E; }

.im-grow { flex: 1; }

.im-tonebtn { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 10px; background: #1A1A1A; border: 1px solid #2A2A2A; color: #F5F5F5; font-size: 12px; font-weight: 600; }
.im-tonebtn .cv { color: #8A8A8A; }
.im-tonebtn .vl { font-weight: 700; }

.im-end-btn {
  padding: 8px 14px; border-radius: 12px;
  background: var(--ink); color: var(--accent);
  border: 1px solid #2A2A2A;
  font-size: 12px; font-weight: 700; letter-spacing: -.005em;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}

.im-me {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 4px; border-radius: 999px;
  background: #1A1A1A; border: 1px solid #2A2A2A;
}
.im-me .av { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.im-me .meta { display: flex; flex-direction: column; line-height: 1.1; }
.im-me .nm { font-size: 12px; font-weight: 700; }
.im-me .rl { font-size: 10px; color: #7A7A7A; }

/* Bottom dock — reused across screens 3-6 */
.im-dock {
  position: absolute; left: 22px; right: 22px; bottom: 18px; height: 76px;
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  background: rgba(20,20,20,.82); border: 1px solid #2A2A2A; border-radius: 20px;
  backdrop-filter: blur(18px); z-index: 5;
}
.im-cbtn {
  min-width: 60px; height: 56px; padding: 0 14px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  border-radius: 14px; background: #222; border: 1px solid #2A2A2A; color: #F5F5F5;
}
.im-cbtn .ic { display: grid; place-items: center; }
.im-cbtn .lb { font-size: 10px; font-weight: 600; color: #9A9A9A; letter-spacing: -.005em; }
.im-cbtn.acid { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.im-cbtn.acid .lb { color: var(--ink); }
.im-cbtn.danger { background: rgba(255,90,102,.12); border-color: rgba(255,90,102,.35); color: #FF8A93; }
.im-cbtn.danger .lb { color: #FF8A93; }
.im-cbtn.warn { background: rgba(232,178,106,.10); border-color: rgba(232,178,106,.35); color: var(--warn); }
.im-cbtn.warn .lb { color: var(--warn); }
.im-cbtn.locked { background: #181818; border-color: #232323; color: #4A4A4A; }
.im-cbtn.locked .lb { color: #4A4A4A; }

.im-sep { width: 1px; height: 36px; background: #2A2A2A; }
.im-dock-grow { flex: 1; }

/* ============================================================
   SCREEN 1 + 2 — modal pattern over dim Lesson Room
   ============================================================ */
.dim-room { position: absolute; inset: 0; overflow: hidden; }
.dim-room::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(2px); }
.dim-room .ghost-stage {
  position: absolute; left: 22px; right: 22px; top: 92px; bottom: 96px;
  border-radius: 22px; overflow: hidden;
  background: radial-gradient(120% 90% at 30% 20%, #2a2a26 0%, #161514 70%);
  border: 1px solid #1F1F1F;
  display: flex; gap: 16px; padding: 16px;
}
.dim-room .ghost-main { flex: 1; border-radius: 16px; background: #1A1A1A; border: 1px solid #2A2A2A; opacity: .65; position: relative; overflow: hidden; }
.dim-room .ghost-main::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 70% at 35% 30%, rgba(232,226,206,.06) 0%, transparent 60%); }
.dim-room .ghost-roster { width: 320px; border-radius: 16px; background: #1A1A1A; border: 1px solid #2A2A2A; opacity: .5; display: grid; grid-template-rows: 80px 1fr; padding: 16px; gap: 10px; }
.dim-room .ghost-roster .blk { background: #232323; border-radius: 10px; }
.dim-room .ghost-roster .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dim-room .ghost-roster .grid .blk { aspect-ratio: 4/3; }
.dim-room .ghost-dock { position: absolute; left: 22px; right: 22px; bottom: 18px; height: 64px; border-radius: 16px; background: #1A1A1A; border: 1px solid #2A2A2A; opacity: .55; }

.modal {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: #141414; border: 1px solid #2A2A2A; border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 8px 24px rgba(0,0,0,.4);
  display: flex; flex-direction: column; overflow: hidden;
}
.modal-head { padding: 20px 22px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #1F1F1F; }
.modal-head .eb { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--accent); }
.modal-head .eb .sp { width: 20px; height: 20px; border-radius: 6px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent); }
.modal-head h3 { font-size: 22px; font-weight: 800; letter-spacing: -.015em; margin: 0; line-height: 1.15; }
.modal-head .htext { flex: 1; min-width: 0; }
.modal-head .htext .sub { font-size: 12px; color: #8A8A8A; margin-top: 4px; }
.modal-close { width: 36px; height: 36px; border-radius: 10px; background: transparent; border: 1px solid #2A2A2A; color: #9A9A9A; display: grid; place-items: center; }

/* Picker tabs/filters/search */
.picker-toolbar { padding: 14px 22px 0; display: flex; flex-direction: column; gap: 12px; }
.picker-tabs { display: flex; gap: 4px; padding: 4px; background: #0E0E0E; border: 1px solid #232323; border-radius: 12px; align-self: flex-start; }
.picker-tab { padding: 8px 14px; border-radius: 9px; background: transparent; border: 0; color: #9A9A9A; font-size: 12px; font-weight: 700; }
.picker-tab.on { background: #222; color: #F5F5F5; }

.picker-search-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.picker-search {
  flex: 1; min-width: 240px;
  padding: 9px 14px; border-radius: 12px;
  background: #0E0E0E; border: 1px solid #232323;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #8A8A8A;
}
.picker-search input { flex: 1; background: transparent; border: 0; outline: 0; color: #F5F5F5; font: inherit; }

.chip-row { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.chip {
  padding: 6px 10px; border-radius: 9px;
  background: #0E0E0E; border: 1px solid #232323;
  font-size: 11px; font-weight: 700; color: #9A9A9A;
  letter-spacing: .03em;
}
.chip.on { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* Arc accordion list */
.arc-list { flex: 1; overflow-y: auto; padding: 8px 14px 14px; display: flex; flex-direction: column; gap: 6px; }
.arc-list::-webkit-scrollbar { width: 6px; }
.arc-list::-webkit-scrollbar-thumb { background: #2A2A2A; border-radius: 999px; }

.arc {
  border-radius: 14px; background: #0E0E0E; border: 1px solid #1F1F1F;
  overflow: hidden;
}
.arc.open { border-color: #2A2A2A; }
.arc-head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
}
.arc.open .arc-head { border-bottom: 1px solid #1F1F1F; }
.arc-emoji { width: 36px; height: 36px; border-radius: 11px; background: #1F1B14; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.arc-head .ti { font-size: 13px; font-weight: 800; letter-spacing: -.005em; flex: 1; min-width: 0; }
.arc-head .ti em { font-style: normal; font-weight: 600; color: #6E6E6E; font-size: 11px; margin-left: 8px; letter-spacing: .04em; text-transform: uppercase; }
.arc-head .meta { font-size: 10px; color: #8A8A8A; font-family: var(--font-mono); letter-spacing: .04em; }
.arc-head .chev { color: #6E6E6E; transition: transform 180ms ease; }
.arc.open .arc-head .chev { transform: rotate(90deg); color: var(--accent); }

.arc-body { display: none; padding: 6px 8px 10px; }
.arc.open .arc-body { display: block; }

.scene-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}
.scene-row:hover { background: rgba(232,226,206,0.06); border-color: var(--accent-strong); }
.scene-row .n { font-family: var(--font-mono); font-size: 11px; color: #5C5C5C; min-width: 18px; }
.scene-row .pic { width: 26px; height: 26px; border-radius: 8px; background: #1F1B14; display: grid; place-items: center; font-size: 13px; flex-shrink: 0; }
.scene-row .nm { flex: 1; font-size: 13px; font-weight: 600; letter-spacing: -.005em; }
.scene-row .cefr { padding: 3px 8px; border-radius: 7px; background: var(--accent); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.scene-row .dur { font-family: var(--font-mono); font-size: 11px; color: #8A8A8A; min-width: 38px; text-align: right; }
.scene-row .rec { padding: 3px 8px; border-radius: 7px; background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-strong); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; }
.scene-row .rec.ghost { visibility: hidden; }

.picker-foot { padding: 12px 22px 16px; border-top: 1px solid #1F1F1F; display: flex; align-items: center; gap: 12px; }
.picker-foot .hint { font-size: 12px; color: #8A8A8A; flex: 1; }
.picker-foot .secondary { padding: 0 14px; height: 40px; border-radius: 12px; background: #1F1F1F; border: 1px solid #2A2A2A; color: #F5F5F5; font-size: 12px; font-weight: 700; }
.picker-foot .primary { padding: 0 18px; height: 40px; border-radius: 12px; background: var(--accent); color: var(--ink); border: 0; font-size: 13px; font-weight: 800; letter-spacing: -.005em; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 12px 24px rgba(232,226,206,.18); }

/* ============================================================
   SCREEN 2 — Scene Setup card
   ============================================================ */
.setup-body { padding: 16px 22px 0; overflow-y: auto; }
.setup-body::-webkit-scrollbar { width: 6px; }
.setup-body::-webkit-scrollbar-thumb { background: #2A2A2A; border-radius: 999px; }
.setup-field { display: flex; flex-direction: column; gap: 8px; padding: 14px 0; border-bottom: 1px solid #1A1A1A; }
.setup-field:last-of-type { border-bottom: 0; }
.setup-field .flab { display: flex; align-items: baseline; gap: 8px; }
.setup-field .flab .nm { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: #C4C4C4; }
.setup-field .flab .hint { font-size: 11px; color: #6E6E6E; }

.seg { display: inline-flex; padding: 3px; gap: 2px; background: #0E0E0E; border: 1px solid #232323; border-radius: 11px; }
.seg .s { padding: 8px 14px; border-radius: 8px; background: transparent; border: 0; color: #9A9A9A; font-size: 12px; font-weight: 700; letter-spacing: -.005em; }
.seg .s.on { background: var(--accent); color: var(--ink); }

.radio-list { display: flex; flex-direction: column; gap: 8px; }
.radio-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: #0E0E0E; border: 1px solid #232323;
  cursor: pointer;
}
.radio-row.on { background: rgba(232,226,206,0.06); border-color: var(--accent-strong); }
.radio-row .knob { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #4A4A4A; flex-shrink: 0; position: relative; }
.radio-row.on .knob { border-color: var(--accent); }
.radio-row.on .knob::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); }
.radio-row .body { flex: 1; min-width: 0; }
.radio-row .body .t { font-size: 13px; font-weight: 700; }
.radio-row .body .s { font-size: 11px; color: #8A8A8A; margin-top: 2px; }
.radio-row .badge { padding: 3px 8px; border-radius: 7px; background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-strong); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.role-row { display: flex; align-items: center; gap: 10px; }
.role-row .rlb { font-size: 11px; font-weight: 700; color: #C4C4C4; min-width: 86px; }
.role-row .rlb .cnt { color: #6E6E6E; font-weight: 600; }
.select {
  flex: 1; padding: 9px 14px; border-radius: 10px;
  background: #0E0E0E; border: 1px solid #232323;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #F5F5F5; font-weight: 600;
}
.select .av { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); font-size: 9px; font-weight: 800; }
.select .nm { flex: 1; }
.select .chev { color: #6E6E6E; }
.role-row .seg.tiny .s { padding: 7px 10px; font-size: 11px; }

.hidden-card {
  padding: 12px 14px; border-radius: 12px;
  background: #1F1B14;
  border: 1px solid rgba(232,178,106,.25);
  display: flex; flex-direction: column; gap: 8px;
}
.hidden-card .hi { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: var(--warn); }
.hidden-card .hi .lkic { width: 22px; height: 22px; border-radius: 7px; background: rgba(232,178,106,.15); display: grid; place-items: center; color: var(--warn); }
.hidden-card .line { display: flex; gap: 8px; font-size: 12px; color: #E5E0D0; line-height: 1.45; }
.hidden-card .line .who { color: var(--warn); font-weight: 700; }

.props-list { display: flex; flex-direction: column; gap: 6px; }
.prop-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 12px; background: #0E0E0E; border: 1px solid #232323; }
.prop-row .pic { width: 28px; height: 28px; border-radius: 9px; background: #1F1B14; display: grid; place-items: center; font-size: 14px; flex-shrink: 0; }
.prop-row .nm { flex: 1; font-size: 13px; font-weight: 700; }
.prop-row .nm .ds { display: block; font-size: 11px; color: #8A8A8A; font-weight: 500; margin-top: 1px; }
.prop-row .tog { width: 36px; height: 20px; border-radius: 999px; background: var(--accent); position: relative; }
.prop-row .tog::after { content: ""; position: absolute; right: 2px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--ink); }
.prop-row .tog.off { background: #2A2A2A; }
.prop-row .tog.off::after { right: auto; left: 2px; background: #6E6E6E; }

/* ============================================================
   SCREEN 3 — Cafe Order (Customer view in-scene)
   ============================================================ */
.scene-stage {
  position: absolute; left: 22px; right: 22px; top: 92px; bottom: 110px;
  display: grid; grid-template-columns: 1fr 380px; gap: 18px;
}
.scene-main {
  display: flex; flex-direction: column; gap: 16px;
  min-width: 0; min-height: 0;
}
.tile-pair {
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 12px;
  height: 340px;
}
.scn-tile {
  position: relative; border-radius: 22px; overflow: hidden;
  background: #0F0F0F; border: 2px solid var(--accent-strong);
}
.scn-tile.small { border-color: #2A2A2A; }
.scn-tile.small.you { border-color: var(--accent); }
.scn-tile .photo { position: absolute; inset: 0; }
.scn-tile .photo .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; }
.scn-tile .photo .b1 { width: 360px; height: 360px; left: -60px; top: -80px; }
.scn-tile .photo .b2 { width: 260px; height: 260px; right: -40px; bottom: -40px; opacity: .55; }
.scn-tile .av-big { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%); width: 124px; height: 124px; border-radius: 50%; display: grid; place-items: center; font-size: 44px; font-weight: 800; box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.scn-tile .av-sm { position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; font-weight: 800; box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.scn-tile .nm-corner { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border-radius: 12px; background: rgba(20,20,20,.78); border: 1px solid #2A2A2A; backdrop-filter: blur(8px); }
.scn-tile .nm-corner .mic { width: 22px; height: 22px; border-radius: 7px; background: var(--accent); color: var(--ink); display: grid; place-items: center; }
.scn-tile .nm-corner .mic.off { background: var(--danger); color: #fff; }
.scn-tile .nm-corner .t { font-size: 13px; font-weight: 700; }
.scn-tile .role-tag { position: absolute; left: 14px; top: 14px; padding: 4px 10px 4px 8px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.scn-tile .role-tag.you { background: var(--accent); color: var(--ink); }
.scn-tile .role-tag.them { background: rgba(20,20,20,.78); color: #C4C4C4; border: 1px solid #2A2A2A; }
.scn-tile .role-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.scn-tile .ambient { position: absolute; right: 14px; top: 14px; padding: 5px 10px; border-radius: 999px; background: rgba(20,20,20,.78); border: 1px solid #2A2A2A; backdrop-filter: blur(8px); font-size: 10px; color: #C4C4C4; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; letter-spacing: .04em; text-transform: uppercase; }
.scn-tile .eq { position: absolute; right: 16px; bottom: 18px; display: inline-flex; gap: 3px; align-items: flex-end; height: 16px; }
.scn-tile .eq i { width: 3px; background: var(--accent); border-radius: 2px; transform-origin: bottom; animation: eq 1s cubic-bezier(.2,.8,.2,1) infinite; }
.scn-tile .eq i:nth-child(1) { height: 30%; }
.scn-tile .eq i:nth-child(2) { height: 70%; animation-delay: .15s; }
.scn-tile .eq i:nth-child(3) { height: 100%; animation-delay: .3s; }
.scn-tile .eq i:nth-child(4) { height: 50%; animation-delay: .45s; }
@keyframes eq { 0%, 100% { transform: scaleY(.4) } 50% { transform: scaleY(1) } }

/* Cafe props — wood/warm panel */
.cafe-props {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px;
}
.menu-board {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, #2A1F12 0%, #1E160B 100%);
  border: 1px solid #3A2A1A;
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.menu-board::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 22px 100%;
  opacity: .8; pointer-events: none;
}
.menu-board .head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; position: relative; }
.menu-board .head .eb { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--accent); }
.menu-board .head h4 { font-size: 18px; font-weight: 800; letter-spacing: -.015em; margin: 0; color: var(--accent); font-family: var(--font-sans); }
.menu-board .head .sub { font-size: 10px; color: #8A7A5C; margin-left: auto; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.menu-row {
  display: flex; align-items: center; gap: 14px;
  padding: 7px 0;
  border-bottom: 1px dotted rgba(232,226,206,.18);
  position: relative;
  cursor: pointer;
}
.menu-row .nm { font-size: 14px; font-weight: 600; color: #E5E0D0; flex: 1; letter-spacing: -.005em; }
.menu-row .pr { font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 700; }
.menu-row.picked { background: rgba(232,226,206,.06); margin: 0 -8px; padding: 7px 8px; border-radius: 8px; border: 1px solid var(--accent-strong); border-bottom-style: solid; }
.menu-row.picked .nm { color: var(--accent); font-weight: 800; }
.menu-row.picked::before { content: "▸"; position: absolute; left: -16px; color: var(--accent); font-weight: 800; }
.menu-board .hint { font-size: 10px; color: #6E5D44; font-style: italic; margin-top: 6px; text-align: center; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }

.order-card {
  border-radius: 18px;
  background: #181613;
  border: 1px solid #2A2520;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.order-card .eb { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: #8A7A5C; }
.order-card .opt-group { display: flex; flex-direction: column; gap: 6px; padding: 6px 0; border-bottom: 1px solid #232020; }
.order-card .opt-group:last-of-type { border-bottom: 0; }
.order-card .opt-group .gl { font-size: 11px; color: #C4B898; font-weight: 700; }
.opt-pills { display: flex; gap: 5px; flex-wrap: wrap; }
.opt-pill {
  padding: 5px 10px; border-radius: 8px;
  background: #0E0C09; border: 1px solid #2A2520;
  font-size: 11px; font-weight: 700; color: #9A8E72;
}
.opt-pill.on { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.pay-btn {
  margin-top: auto;
  padding: 12px; border-radius: 12px;
  background: var(--accent); color: var(--ink);
  border: 0;
  font-size: 13px; font-weight: 800; letter-spacing: -.005em;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}

/* Right phrase panel (scenarios) */
.phrase-panel {
  border-radius: 22px; background: #141414; border: 1px solid #1F1F1F;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 0; overflow: hidden;
}
.phrase-panel .role-pill-big {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  background: var(--accent); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  align-self: flex-start;
}
.phrase-panel .role-pill-big .av { width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: var(--accent); display: grid; place-items: center; font-size: 9px; }
.phrase-panel .role-pill-big.them { background: rgba(20,20,20,.78); color: #C4C4C4; border: 1px solid #2A2A2A; }

.phrase-section { display: flex; flex-direction: column; gap: 8px; }
.phrase-section .head { display: flex; align-items: baseline; gap: 8px; }
.phrase-section .head .lb { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: #C4C4C4; }
.phrase-section .head .lv { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; color: #6E6E6E; }
.phrase-section .head .cnt { font-family: var(--font-mono); font-size: 11px; color: #6E6E6E; margin-left: auto; }
.phrase-list { display: flex; flex-direction: column; gap: 6px; flex: 1; overflow-y: auto; min-height: 0; }
.phrase-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  border-radius: 11px;
  background: #0E0E0E;
  border: 1px solid #1F1F1F;
}
.phrase-row.done { background: rgba(232,226,206,0.06); border-color: var(--accent-strong); }
.phrase-row .ck {
  width: 20px; height: 20px; border-radius: 6px;
  background: #1A1A1A; border: 1.5px solid #2E2E2E;
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  color: transparent;
}
.phrase-row.done .ck { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.phrase-row .txt { font-size: 13px; font-weight: 600; letter-spacing: -.005em; color: #E5E0D0; line-height: 1.4; flex: 1; }
.phrase-row.done .txt { color: var(--accent); }
.phrase-row .target { font-size: 9px; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; color: #6E6E6E; padding: 2px 7px; border-radius: 6px; border: 1px solid #2A2A2A; }
.phrase-panel .hint { font-size: 11px; color: #6E6E6E; line-height: 1.4; padding: 8px 0 0; border-top: 1px solid #1F1F1F; }

/* ============================================================
   SCREEN 4 — Taxi Ride (Passenger + annotation map)
   ============================================================ */
.tile-pair-slim { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 140px; }
.tile-pair-slim .scn-tile { border-width: 2px; }
.tile-pair-slim .scn-tile .av-big { width: 70px; height: 70px; font-size: 26px; top: 50%; }
.tile-pair-slim .scn-tile .nm-corner .t { font-size: 11px; }
.tile-pair-slim .scn-tile .role-tag { padding: 3px 8px; font-size: 9px; }
.tile-pair-slim .scn-tile .ambient { display: none; }

.map-wrap {
  flex: 1; min-height: 0; border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, var(--warm-paper) 0%, var(--warm-paper-2) 100%);
  border: 1px solid #3A2E1A;
  position: relative;
}
.map-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(120,90,50,0.08) 0%, transparent 22%),
    radial-gradient(circle at 75% 70%, rgba(120,90,50,0.06) 0%, transparent 20%),
    linear-gradient(rgba(120,90,50,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,90,50,.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
  pointer-events: none;
}
.map-toolbar {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; gap: 4px; padding: 5px;
  background: rgba(40,30,18,0.92); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  backdrop-filter: blur(8px); z-index: 3;
}
.map-toolbar .mt {
  width: 34px; height: 34px; border-radius: 9px; background: transparent; border: 0;
  color: #DBC9A3; display: grid; place-items: center;
}
.map-toolbar .mt.on { background: var(--accent); color: var(--ink); }
.map-toolbar .mt.sw { width: 22px; height: 22px; border-radius: 50%; }
.map-toolbar .mt.sw.col-ink { background: var(--ink); }
.map-toolbar .mt.sw.col-red { background: #B85C3D; }
.map-toolbar .mt.sw.col-amber { background: #C99340; }
.map-toolbar .mt.sw.on { box-shadow: 0 0 0 2px var(--accent); }
.map-toolbar .sep { width: 1px; height: 22px; background: rgba(255,255,255,.08); margin: 0 2px; align-self: center; }

.map-canvas { position: absolute; inset: 0; }

.map-tag {
  position: absolute;
  padding: 5px 10px 5px 5px;
  border-radius: 999px;
  background: var(--ink); color: var(--accent);
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  white-space: nowrap;
}
.map-tag .pin { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 9px; font-weight: 800; }
.map-tag.dest { background: var(--accent); color: var(--ink); }
.map-tag.dest .pin { background: var(--ink); color: var(--accent); }

.poi {
  position: absolute;
  width: 22px; height: 22px; border-radius: 7px;
  background: rgba(26,26,26,0.12); border: 1.5px solid rgba(26,26,26,0.6);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800; color: rgba(26,26,26,0.7);
}

.map-legend {
  position: absolute; right: 14px; top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(40,30,18,0.92);
  color: #DBC9A3;
  font-size: 11px;
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid rgba(255,255,255,.06);
}
.map-legend .lr { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.map-legend .lr .sw { width: 16px; height: 3px; border-radius: 2px; }
.map-legend .lr .sw.b { background: var(--ink); }
.map-legend .lr .sw.r { background: #B85C3D; }

/* Annotation note callout */
.annot-note {
  position: absolute;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,250,235,0.92);
  color: var(--ink);
  font-size: 11px; font-weight: 700;
  border: 1px dashed rgba(26,26,26,0.5);
  transform: rotate(-3deg);
  white-space: nowrap;
}

/* Fare ticker */
.fare-block {
  padding: 14px 16px; border-radius: 14px;
  background: linear-gradient(180deg, #1A1A1A, #141414);
  border: 1px solid var(--accent-strong);
  display: flex; align-items: center; gap: 14px;
}
.fare-block .meter { flex: 1; }
.fare-block .meter .lb { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: #8A8A8A; }
.fare-block .meter .vl { font-family: var(--font-mono); font-size: 28px; font-weight: 800; letter-spacing: -.02em; color: var(--accent); margin-top: 2px; line-height: 1; }
.fare-block .meter .vl .cur { font-size: 16px; opacity: .7; margin-right: 2px; }
.fare-block .ticker {
  font-family: var(--font-mono); font-size: 10px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px; border-radius: 8px;
  background: var(--accent-soft);
  letter-spacing: .06em;
}
.fare-block .ticker .pulse { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: lpulse 1s ease-in-out infinite; }

.tip-row { display: flex; gap: 5px; }
.tip-pill {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  background: #0E0E0E; border: 1px solid #232323;
  color: #9A9A9A;
  font-size: 12px; font-weight: 800;
  text-align: center;
}
.tip-pill.on { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ============================================================
   SCREEN 5 — Director Bar (right-side panel)
   ============================================================ */
.dir-stage {
  position: absolute; left: 22px; right: 22px; top: 92px; bottom: 110px;
  display: grid; grid-template-columns: 1fr 300px; gap: 18px;
}
.dir-main { display: flex; flex-direction: column; gap: 16px; min-width: 0; min-height: 0; }
.dir-actors { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 300px; }
.dir-props {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px;
}

.director {
  border-radius: 22px;
  background: linear-gradient(180deg, #18140C 0%, #141008 100%);
  border: 1px solid #2A2418;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
}
.director .dhead {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 12px; border-bottom: 1px solid #2A2418;
}
.director .dhead .eb { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--warn); }
.director .dhead .eb .lt { width: 6px; height: 6px; border-radius: 50%; background: var(--warn); animation: lpulse 1.4s ease-in-out infinite; }
.director .dhead .ti { font-size: 18px; font-weight: 800; letter-spacing: -.015em; margin: 4px 0 0; color: var(--accent); font-family: var(--font-sans); }

.dir-phase {
  background: #0E0B05; border: 1px solid #2A2418;
  border-radius: 14px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.dir-phase .pn { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: #8A7A5C; }
.dir-phase .pv { font-size: 18px; font-weight: 800; letter-spacing: -.015em; color: var(--accent); margin-top: 0; line-height: 1.1; }
.dir-phase .row { display: flex; gap: 6px; margin-top: 4px; }
.dir-phase .row .b {
  flex: 1; padding: 8px 8px;
  border-radius: 10px;
  background: #1F1B14; border: 1px solid #2A2418;
  color: #DBC9A3; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
}
.dir-phase .row .b.primary { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.dir-section { display: flex; flex-direction: column; gap: 8px; }
.dir-section .lab { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: #8A7A5C; }

.dir-btn {
  padding: 10px 12px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  background: #1F1B14; border: 1px solid #2A2418;
  color: #DBC9A3;
  font-size: 12px; font-weight: 700; text-align: left;
}
.dir-btn .ic { width: 28px; height: 28px; border-radius: 9px; background: #2A2418; display: grid; place-items: center; font-size: 14px; color: var(--warn); flex-shrink: 0; }
.dir-btn .nm { flex: 1; }
.dir-btn .nm .ds { display: block; font-size: 10px; color: #6E5D44; font-weight: 500; margin-top: 1px; }
.dir-btn.twist { background: rgba(232,178,106,.06); border-color: rgba(232,178,106,.30); }
.dir-btn.twist .ic { background: rgba(232,178,106,.15); }
.dir-btn.danger { background: rgba(255,90,102,.08); border-color: rgba(255,90,102,.30); color: #FF8A93; }
.dir-btn.danger .ic { background: rgba(255,90,102,.15); color: #FF8A93; }

/* ============================================================
   SCREEN 6 — Spectator View
   ============================================================ */
.spec-stage {
  position: absolute; left: 22px; right: 22px; top: 92px; bottom: 110px;
  display: grid; grid-template-columns: 1fr 340px; gap: 18px;
}
.spec-main { display: flex; flex-direction: column; gap: 14px; min-width: 0; min-height: 0; }
.spec-status {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #141414;
  border: 1px solid #1F1F1F;
}
.spec-status .eyei { width: 28px; height: 28px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.spec-status .ti { font-size: 13px; font-weight: 700; }
.spec-status .ti .sub { color: #8A8A8A; font-weight: 500; margin-left: 6px; }
.spec-status .timer { margin-left: auto; font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--accent); padding: 6px 12px; border-radius: 10px; background: var(--accent-soft); }
.spec-status .phase { padding: 4px 10px; border-radius: 8px; background: #1F1B14; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.spec-actors { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; height: 360px; }
.spec-actors .scn-tile { border-color: #2A2A2A; }
.spec-actors .scn-tile.speaking { border-color: var(--accent); }

.spec-props {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px;
  position: relative;
}
.spec-props::after {
  content: "READ-ONLY · ВЫ СМОТРИТЕ";
  position: absolute;
  top: 10px; left: 18px;
  font-family: var(--font-mono); font-size: 10px;
  color: #6E5D44; letter-spacing: .12em; font-weight: 700;
  z-index: 2;
}
.spec-props .menu-board, .spec-props .order-card { pointer-events: none; opacity: .85; }

.spec-self {
  position: absolute; left: 22px; bottom: 110px; width: 200px; height: 110px;
  border-radius: 14px; overflow: hidden;
  background: #1A1A1A;
  border: 1.5px solid rgba(255,90,102,0.4);
  z-index: 4;
  display: none; /* default; rendered separately */
}

.spec-side {
  border-radius: 22px;
  background: #141414;
  border: 1px solid #1F1F1F;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  min-height: 0;
}
.spec-side .ss { display: flex; flex-direction: column; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid #1F1F1F; }
.spec-side .ss:last-of-type { border-bottom: 0; padding-bottom: 0; }
.spec-side .ss .lab { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: #C4C4C4; display: flex; align-items: center; gap: 6px; }
.spec-side .ss .lab .cnt { margin-left: auto; font-family: var(--font-mono); color: #6E6E6E; font-weight: 700; letter-spacing: .04em; }

.live-phrase {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #0E0E0E; border: 1px solid #1F1F1F;
  font-size: 12px; font-weight: 600; color: #C4C4C4;
}
.live-phrase.heard { background: rgba(232,226,206,.06); border-color: var(--accent-strong); color: var(--accent); }
.live-phrase .ck {
  width: 18px; height: 18px; border-radius: 5px;
  background: #1A1A1A; border: 1.5px solid #2E2E2E;
  display: grid; place-items: center; flex-shrink: 0;
  color: transparent;
}
.live-phrase.heard .ck { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.live-phrase.heard.fresh { animation: phraseIn .5s ease-out; }
@keyframes phraseIn { 0% { background: var(--accent); color: var(--ink); transform: scale(1.02); } 100% { } }

.emoji-row { display: flex; gap: 6px; }
.emoji-btn {
  flex: 1; aspect-ratio: 1;
  border-radius: 12px;
  background: #0E0E0E; border: 1px solid #1F1F1F;
  font-size: 22px;
  display: grid; place-items: center;
  position: relative;
}
.emoji-btn .cnt { position: absolute; top: 4px; right: 4px; font-size: 9px; color: var(--accent); font-family: var(--font-mono); font-weight: 800; }
.emoji-btn.popped { background: var(--accent-soft); border-color: var(--accent-strong); }

.upnext-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--accent); color: var(--ink);
  display: flex; flex-direction: column; gap: 4px;
}
.upnext-card .eb { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; opacity: .55; }
.upnext-card .vl { font-family: var(--font-mono); font-size: 24px; font-weight: 800; letter-spacing: -.02em; line-height: 1; margin: 2px 0; }
.upnext-card .nm { font-size: 12px; font-weight: 700; }
.upnext-card .nm em { font-style: normal; opacity: .55; font-weight: 600; }

.notes-area {
  flex: 1;
  border-radius: 12px;
  background: #0E0E0E; border: 1px solid #1F1F1F;
  padding: 10px 12px;
  color: #C4C4C4;
  font-size: 12px;
  line-height: 1.5;
  font-family: var(--font-sans);
  resize: none;
  min-height: 60px;
}
.notes-area::placeholder { color: #5C5C5C; }

.spec-mic-tile {
  position: absolute; right: 22px; bottom: 110px;
  width: 220px; height: 84px;
  border-radius: 14px; overflow: hidden;
  background: #1A1A1A;
  border: 1.5px solid rgba(255,90,102,0.45);
  display: flex; align-items: center; gap: 12px; padding: 0 12px;
  z-index: 4;
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
}
.spec-mic-tile .av { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 18px; font-weight: 800; flex-shrink: 0; position: relative; }
.spec-mic-tile .av .ic-off { position: absolute; right: -4px; bottom: -4px; width: 22px; height: 22px; border-radius: 50%; background: var(--danger); color: #fff; display: grid; place-items: center; border: 2px solid #1A1A1A; }
.spec-mic-tile .info { flex: 1; min-width: 0; }
.spec-mic-tile .info .nm { font-size: 12px; font-weight: 700; }
.spec-mic-tile .info .st { font-size: 10px; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; color: #FF8A93; margin-top: 2px; }
