/* ═══════════════════════════════════════════════════════════
   THE OFFICE VIEW v3 — Pixel-art gamified agent workspace
   Retro pixel aesthetic with beds for sleeping agents,
   desks for active agents, ambient game-world touches
   ═══════════════════════════════════════════════════════════ */

/* ── Pixel-Art Foundation ────────────────────────────────── */
.office-scene {
  padding: 0;
  min-height: 300px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--pb-bg);
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
}

/* ── Live Counter Banner ──────────────────────────────────── */
.office-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  margin: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(26,37,53,0.95) 100%);
  border-bottom: 2px solid rgba(42,147,193,0.15);
  font-size: 14px;
  font-weight: 600;
  color: var(--pb-text);
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}
.office-banner .office-counter {
  font-size: 26px;
  font-weight: 800;
  color: var(--pb-green);
  min-width: 28px;
  text-align: center;
  transition: color 0.3s;
  text-shadow: 0 0 12px rgba(34,197,94,0.4);
}
.office-banner.quiet .office-counter {
  color: var(--pb-text-dim);
  text-shadow: none;
}
.office-banner .office-banner-text {
  color: var(--pb-text-muted);
}
.office-banner .office-banner-icon {
  font-size: 18px;
  animation: office-banner-pulse 2s ease-in-out infinite;
}
@keyframes office-banner-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ── Room Frame ───────────────────────────────────────────── */
.office-room {
  position: relative;
  min-height: 400px;
  padding: 0;
  /* Floor: pixel-grid pattern */
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(42,147,193,0.06) 31px,
      rgba(42,147,193,0.06) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 31px,
      rgba(42,147,193,0.06) 31px,
      rgba(42,147,193,0.06) 32px
    ),
    linear-gradient(180deg, var(--pb-surface) 0%, #0c1220 100%);
  border-top: 3px solid rgba(42,147,193,0.12);
}

/* Wall — left accent */
.office-room::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(42,147,193,0.2) 0%, rgba(42,147,193,0.05) 100%);
  z-index: 1;
}

/* ── Room Header (props bar) ─────────────────────────────── */
.office-room-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(42,147,193,0.06);
  background: rgba(17,24,39,0.5);
}
.office-room-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--pb-text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.office-prop {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--pb-text-dim);
  padding: 3px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 2px;
}
.office-prop svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.office-props-right {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Ambient props */
.office-clock {
  animation: office-clock-tick 2s ease-in-out infinite;
}
@keyframes office-clock-tick {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ── Ambient Decorations ─────────────────────────────────── */
.office-ambient {
  display: flex;
  gap: 16px;
  padding: 10px 20px 6px;
  flex-wrap: wrap;
}
.office-ambient-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--pb-text-dim);
  padding: 4px 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(42,147,193,0.06);
  border-radius: 2px;
  white-space: nowrap;
}
.office-ambient-item .ambient-icon {
  font-size: 14px;
  line-height: 1;
}

/* Window with daylight */
.office-window {
  position: relative;
  overflow: hidden;
}
.office-window .ambient-icon {
  animation: office-window-glow 6s ease-in-out infinite;
}
@keyframes office-window-glow {
  0%, 100% { opacity: 0.5; filter: brightness(0.8); }
  50% { opacity: 1; filter: brightness(1.2); }
}

/* Plant sway */
.office-plant .ambient-icon {
  display: inline-block;
  animation: office-plant-sway 4s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes office-plant-sway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
}

/* Server blink */
.office-server .ambient-icon {
  animation: office-server-blink 1.5s steps(2) infinite;
}
@keyframes office-server-blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Dorm zone */
.office-dorm {
  border-left: 2px solid rgba(139,92,246,0.3);
}
.office-dorm .ambient-icon {
  animation: office-dorm-pulse 3s ease-in-out infinite;
}
@keyframes office-dorm-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ── Department Clusters ─────────────────────────────────── */
.office-departments {
  padding: 12px 16px 20px;
}
.office-dept {
  margin-bottom: 20px;
}
.office-dept:last-child {
  margin-bottom: 0;
}
.office-dept-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--pb-text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-left: 3px solid var(--desk-dept-color, var(--pb-blue));
  background: linear-gradient(90deg, rgba(42,147,193,0.06) 0%, transparent 100%);
  border-radius: 0 2px 2px 0;
}
.office-dept-label .dept-dot {
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--desk-dept-color, var(--pb-blue));
  flex-shrink: 0;
}
.office-dept-label .dept-count {
  font-weight: 500;
  opacity: 0.6;
  font-size: 9px;
}

/* ── Workstation Grid ─────────────────────────────────────── */
.office-desks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 6px;
}

/* ── Individual Workstation Tile ──────────────────────────── */
.office-desk {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px 8px;
  border-radius: 4px;
  background: rgba(17,24,39,0.5);
  border: 2px solid rgba(42,147,193,0.06);
  transition: all 0.25s ease;
  position: relative;
  cursor: default;
  min-height: 100px;
}
.office-desk:hover {
  border-color: var(--pb-border-hover);
  background: rgba(26,37,53,0.8);
  transform: translateY(-2px);
  box-shadow:
    0 4px 0 rgba(0,0,0,0.5),
    0 0 0 1px var(--desk-glow-color, rgba(42,147,193,0.15));
  z-index: 10;
}

/* Active/working desk highlight — pixel glow */
.office-desk[data-office-status="active"],
.office-desk[data-office-status="working"] {
  background: rgba(17,24,39,0.7);
  border-color: var(--desk-glow-color, rgba(42,147,193,0.2));
  box-shadow:
    0 2px 0 rgba(0,0,0,0.4),
    inset 0 0 12px rgba(34,197,94,0.05);
}

/* Idle desk — soft purple tint for dorm feel */
.office-desk[data-office-status="idle"] {
  background: rgba(20,15,30,0.6);
  border-color: rgba(139,92,246,0.1);
}

/* ── Workstation Layout: Desk Surface ────────────────────── */
.office-workstation {
  position: relative;
  width: 88px;
  height: 60px;
  margin-bottom: 4px;
}

/* Desk surface — pixel-style sharp corners */
.office-desk-surface {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: linear-gradient(180deg, #2a3345 0%, #1e2838 100%);
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.08);
  z-index: 1;
}
/* Desk legs */
.office-desk-surface::before,
.office-desk-surface::after {
  content: '';
  position: absolute;
  bottom: -6px;
  width: 4px;
  height: 6px;
  background: #1e2838;
  border-radius: 0;
}
.office-desk-surface::before { left: 6px; }
.office-desk-surface::after { right: 6px; }

/* ── Monitor ─────────────────────────────────────────────── */
.office-monitor {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 24px;
  border-radius: 2px;
  background: #0d1117;
  border: 2px solid rgba(255,255,255,0.1);
  z-index: 2;
  overflow: hidden;
}
/* Monitor stand */
.office-monitor::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 5px;
  background: #1a2030;
  border-radius: 0 0 2px 2px;
  z-index: 3;
}
/* Screen content (code lines) for active */
.office-screen-lines {
  position: absolute;
  inset: 2px;
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.office-desk[data-office-status="active"] .office-screen-lines,
.office-desk[data-office-status="working"] .office-screen-lines {
  opacity: 1;
}
.office-screen-line {
  height: 2px;
  margin-bottom: 2px;
  border-radius: 0;
  background: var(--desk-glow-color, rgba(34,197,94,0.5));
  animation: office-code-scroll 2s steps(4) infinite;
}
.office-screen-line:nth-child(1) { width: 60%; animation-delay: 0s; }
.office-screen-line:nth-child(2) { width: 80%; animation-delay: 0.3s; }
.office-screen-line:nth-child(3) { width: 45%; animation-delay: 0.6s; }
.office-screen-line:nth-child(4) { width: 70%; animation-delay: 0.9s; }
@keyframes office-code-scroll {
  0% { opacity: 0.3; }
  50% { opacity: 0.9; }
  100% { opacity: 0.3; }
}

/* Monitor glow for active */
.office-desk[data-office-status="active"] .office-monitor,
.office-desk[data-office-status="working"] .office-monitor {
  border-color: var(--desk-glow-color, rgba(34,197,94,0.5));
  box-shadow:
    0 0 6px var(--desk-glow-color, rgba(34,197,94,0.3)),
    0 0 12px var(--desk-glow-color, rgba(34,197,94,0.1));
}

/* Offline — dark monitor */
.office-desk[data-office-status="offline"] .office-monitor {
  opacity: 0.2;
}

/* ── Chair ───────────────────────────────────────────────── */
.office-chair {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  background: #252f3f;
  border-radius: 2px;
  z-index: 0;
  border: 1px solid rgba(255,255,255,0.04);
}
/* Chair back */
.office-chair::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 8px;
  background: #2a3545;
  border-radius: 2px 2px 0 0;
  border: 1px solid rgba(255,255,255,0.04);
  border-bottom: none;
}

/* ── Bot Avatar (the employee) ───────────────────────────── */
.office-bot {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.office-bot-body {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
/* Bot face — eyes */
.office-bot-face {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.office-bot-eye {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: rgba(255,255,255,0.9);
}

/* Active: bot typing animation */
.office-desk[data-office-status="active"] .office-bot,
.office-desk[data-office-status="working"] .office-bot {
  animation: office-typing 0.6s steps(3) infinite;
}
@keyframes office-typing {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  33% { transform: translateX(-50%) translateY(-2px); }
  66% { transform: translateX(-50%) translateY(1px); }
}

/* Active: eyes blink */
.office-desk[data-office-status="active"] .office-bot-eye,
.office-desk[data-office-status="working"] .office-bot-eye {
  animation: office-eye-blink 3s ease-in-out infinite;
}
@keyframes office-eye-blink {
  0%, 45%, 55%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}

/* Offline — no bot visible (clocked out) */
.office-desk[data-office-status="offline"] .office-bot {
  opacity: 0;
}
.office-desk[data-office-status="offline"] .office-chair::before {
  top: -5px;
}

/* ── Activity Indicator (pulsing dot) ────────────────────── */
.office-activity {
  position: absolute;
  top: -4px;
  right: -10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--desk-glow-color, var(--pb-green));
  border: 2px solid var(--pb-bg);
  z-index: 8;
  display: none;
}
.office-desk[data-office-status="active"] .office-activity,
.office-desk[data-office-status="working"] .office-activity {
  display: block;
  animation: office-pulse 1.5s steps(3) infinite;
}
@keyframes office-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--desk-glow-color, rgba(34,197,94,0.4)); }
  50% { transform: scale(1.3); box-shadow: 0 0 0 3px transparent; }
}

/* ── Desk Props (coffee mug, etc.) ───────────────────────── */
.office-desk-prop {
  position: absolute;
  font-size: 8px;
  z-index: 4;
  opacity: 0.5;
  line-height: 1;
}
.office-desk-prop.prop-left {
  bottom: 4px;
  left: 8px;
}
.office-desk-prop.prop-right {
  bottom: 4px;
  right: 8px;
}

/* ═══════════════════════════════════════════════════════════
   BED / SLEEPING — Idle agents sleep in a pixel bed
   ═══════════════════════════════════════════════════════════ */

.office-bed-area {
  position: relative;
  width: 88px;
  height: 60px;
  margin-bottom: 4px;
}

/* The bed frame */
.office-bed {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 32px;
  background: linear-gradient(180deg, #1e2235 0%, #171b2b 100%);
  border: 2px solid rgba(139,92,246,0.12);
  border-radius: 3px;
  overflow: visible;
}

/* Headboard */
.office-bed::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -2px;
  width: 18px;
  height: calc(100% + 8px);
  background: linear-gradient(180deg, #2a2545 0%, #1e1a35 100%);
  border: 2px solid rgba(139,92,246,0.15);
  border-radius: 3px 0 0 3px;
  z-index: 0;
}

/* Footboard */
.office-bed::after {
  content: '';
  position: absolute;
  top: 2px;
  right: -2px;
  width: 6px;
  height: calc(100% - 4px);
  background: #1e1a35;
  border: 2px solid rgba(139,92,246,0.1);
  border-radius: 0 2px 2px 0;
  border-left: none;
}

/* Pillow */
.office-pillow {
  position: absolute;
  top: 4px;
  left: 16px;
  width: 14px;
  height: 10px;
  background: #e2e0f0;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* Bot head sleeping on pillow */
.office-bot-sleeping {
  position: absolute;
  top: 1px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

/* Sleeping face — closed eyes (horizontal lines) */
.office-bot-face.sleeping {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.office-bot-eye-closed {
  width: 4px;
  height: 2px;
  border-radius: 0;
  background: rgba(255,255,255,0.7);
}

/* Blanket covering the bot body */
.office-blanket {
  position: absolute;
  top: 6px;
  left: 30px;
  right: 6px;
  height: 20px;
  background: linear-gradient(
    135deg,
    rgba(139,92,246,0.18) 0%,
    rgba(99,62,206,0.12) 50%,
    rgba(139,92,246,0.08) 100%
  );
  border-radius: 2px;
  z-index: 4;
  border: 1px solid rgba(139,92,246,0.1);
  /* Pixel stripe pattern on blanket */
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 5px,
      rgba(139,92,246,0.06) 5px,
      rgba(139,92,246,0.06) 6px
    );
  background-color: rgba(139,92,246,0.12);
}

/* ── Zzz floating animation ──────────────────────────────── */
.office-zzz {
  position: absolute;
  top: -4px;
  right: 8px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.office-zzz span {
  font-weight: 800;
  color: rgba(139,92,246,0.7);
  line-height: 1;
  display: block;
}
.office-zzz .zzz-1 {
  font-size: 12px;
  animation: zzz-float-1 2.5s ease-in-out infinite;
}
.office-zzz .zzz-2 {
  font-size: 9px;
  animation: zzz-float-2 2.5s ease-in-out infinite;
  animation-delay: 0.4s;
}
.office-zzz .zzz-3 {
  font-size: 7px;
  animation: zzz-float-3 2.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes zzz-float-1 {
  0%, 100% { opacity: 0.2; transform: translateY(0) translateX(0); }
  50% { opacity: 0.9; transform: translateY(-6px) translateX(3px); }
}
@keyframes zzz-float-2 {
  0%, 100% { opacity: 0.15; transform: translateY(0) translateX(0); }
  50% { opacity: 0.7; transform: translateY(-4px) translateX(2px); }
}
@keyframes zzz-float-3 {
  0%, 100% { opacity: 0.1; transform: translateY(0) translateX(0); }
  50% { opacity: 0.5; transform: translateY(-3px) translateX(1px); }
}

/* ═══════════════════════════════════════════════════════════ */

/* ── Desk Label ───────────────────────────────────────────── */
.office-desk-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--pb-text);
  text-align: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
  line-height: 1.2;
}
.office-desk-status {
  font-size: 8px;
  font-weight: 500;
  color: var(--pb-text-dim);
  text-transform: capitalize;
  line-height: 1.2;
}
.office-desk[data-office-status="active"] .office-desk-status,
.office-desk[data-office-status="working"] .office-desk-status {
  color: var(--desk-glow-color, var(--pb-green));
}
.office-desk[data-office-status="idle"] .office-desk-status {
  color: rgba(139,92,246,0.6);
}
.office-desk[data-office-status="offline"] .office-desk-name {
  opacity: 0.3;
}
.office-desk[data-office-status="offline"] .office-desk-status {
  opacity: 0.3;
}

/* ── Tooltip ──────────────────────────────────────────────── */
.office-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--pb-surface-3);
  border: 2px solid var(--pb-border-hover);
  border-radius: 4px;
  padding: 10px 12px;
  min-width: 180px;
  max-width: 240px;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 0 rgba(0,0,0,0.5);
}
.office-desk:hover .office-tooltip {
  display: block;
}
.office-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--pb-surface-3);
}
.office-tt-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--pb-text);
  margin-bottom: 4px;
}
.office-tt-row {
  font-size: 10px;
  color: var(--pb-text-muted);
  margin-bottom: 2px;
  line-height: 1.4;
}
.office-tt-row strong {
  color: var(--pb-text);
}
.office-tt-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 2px;
  color: #fff;
  margin-right: 4px;
}
.office-tt-task {
  font-size: 9px;
  color: var(--pb-text-dim);
  padding: 4px 6px;
  margin-top: 4px;
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
  border-left: 2px solid var(--desk-glow-color, var(--pb-green));
  line-height: 1.3;
}

/* ── Empty / Quiet State ──────────────────────────────────── */
.office-empty-msg {
  text-align: center;
  padding: 48px 16px;
  color: var(--pb-text-dim);
  font-size: 13px;
  line-height: 1.6;
}

/* ── Meeting Corner ──────────────────────────────────────── */
.office-meeting-corner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 12px;
  border-top: 1px solid rgba(42,147,193,0.04);
  font-size: 10px;
  color: var(--pb-text-dim);
}
.office-meeting-corner .meeting-icon {
  font-size: 14px;
  opacity: 0.4;
}
.office-meeting-corner .meeting-text {
  opacity: 0.5;
  font-style: italic;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .office-desks {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 4px;
  }
  .office-workstation,
  .office-bed-area {
    width: 72px;
    height: 52px;
  }
  .office-desk-surface {
    width: 64px;
    height: 14px;
  }
  .office-monitor {
    width: 28px;
    height: 18px;
  }
  .office-bot-body {
    width: 20px;
    height: 20px;
  }
  .office-bot-eye {
    width: 3px;
    height: 3px;
  }
  .office-chair {
    width: 18px;
    height: 10px;
  }
  .office-desk-name {
    font-size: 8px;
    max-width: 80px;
  }
  .office-ambient {
    gap: 8px;
    padding: 8px 12px 4px;
  }
  .office-ambient-item {
    font-size: 9px;
    padding: 3px 6px;
  }
  .office-desk-prop {
    display: none;
  }
  .office-departments {
    padding: 8px 10px 16px;
  }
  /* Bed responsive */
  .office-bed {
    width: 62px;
    height: 26px;
  }
  .office-bot-sleeping {
    width: 14px;
    height: 14px;
  }
  .office-pillow {
    width: 10px;
    height: 8px;
  }
  .office-zzz .zzz-1 { font-size: 10px; }
  .office-zzz .zzz-2 { font-size: 7px; }
  .office-zzz .zzz-3 { font-size: 6px; }
}

@media (max-width: 480px) {
  .office-desks {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
  .office-room-header {
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 12px;
  }
  .office-desk {
    padding: 8px 4px 6px;
    min-height: 80px;
  }
}

/* ── Performance: reduce motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .office-desk[data-office-status="active"] .office-bot,
  .office-desk[data-office-status="working"] .office-bot,
  .office-plant .ambient-icon,
  .office-server .ambient-icon,
  .office-window .ambient-icon,
  .office-clock,
  .office-banner .office-banner-icon,
  .office-desk[data-office-status="active"] .office-bot-eye,
  .office-desk[data-office-status="working"] .office-bot-eye,
  .office-screen-line,
  .office-desk[data-office-status="active"] .office-activity,
  .office-desk[data-office-status="working"] .office-activity,
  .office-zzz .zzz-1,
  .office-zzz .zzz-2,
  .office-zzz .zzz-3,
  .office-dorm .ambient-icon {
    animation: none !important;
  }
}
