/* aria-memory-xp-1.css — cyberpunk redesign */
/* Same structure as aria-memory-xp.css — duplicate file the app loads separately */

.lm-section {
  padding: 0 16px 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lm-section.lm-section-visible {
  opacity: 1;
  transform: translateY(0);
}

.lm-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.lm-section-eyebrow::before {
  content: '//';
  color: var(--rose);
  opacity: 0.5;
  margin-right: 2px;
}

.lm-eyebrow-dot {
  width: 5px; height: 5px;
  flex-shrink: 0;
  background: var(--rose);
  box-shadow: 0 0 6px var(--rose);
}
.lm-dot-amber { background: var(--amber); box-shadow: 0 0 6px rgba(251,191,36,0.5); }
.lm-dot-blue  { background: var(--blue);  box-shadow: 0 0 6px rgba(56,189,248,0.5); }
.lm-dot-green { background: var(--green); box-shadow: 0 0 6px rgba(57,217,138,0.5); }

.lm-section-narration { padding-top: 16px; }

.lm-note-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateX(-8px);
  animation: lm-note-in 0.4s ease forwards;
}
@keyframes lm-note-in { to { opacity: 1; transform: translateX(0); } }

.lm-note-dash {
  color: var(--rose);
  opacity: 0.5;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.65;
  flex-shrink: 0;
}
.lm-note-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  letter-spacing: 0.02em;
}

.lm-threads-list { display: flex; flex-direction: column; gap: 8px; }

.lm-thread-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--amber-dim);
  border: 1px solid rgba(251,191,36,0.18);
  border-left: 2px solid rgba(251,191,36,0.4);
  padding: 10px 13px;
  opacity: 0;
  animation: lm-note-in 0.38s ease forwards;
}
.lm-thread-icon { color: var(--amber); flex-shrink: 0; margin-top: 2px; opacity: 0.8; }
.lm-thread-text { font-family: var(--font-body); font-size: 13px; color: var(--text2); line-height: 1.55; }

.lm-style-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.lm-style-pill {
  background: var(--blue-dim);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.06em;
  opacity: 0;
  animation: lm-note-in 0.35s ease forwards;
}

.lm-sessions-list { display: flex; flex-direction: column; gap: 0; }

.lm-session-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  position: relative;
  opacity: 0;
  animation: lm-note-in 0.38s ease forwards;
}
.lm-session-line {
  position: absolute;
  left: 6px; top: 9px;
  width: 1px; height: 100%;
  background: rgba(57,217,138,0.2);
}
.lm-session-row:last-child .lm-session-line { display: none; }

.lm-session-dot {
  width: 13px; height: 13px;
  background: rgba(57,217,138,0.1);
  border: 1.5px solid rgba(57,217,138,0.45);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 5px rgba(57,217,138,0.2);
}
.lm-session-text { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); line-height: 1.6; }

.lm-empty, .lm-unsigned {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 24px 32px; gap: 12px;
}
.lm-empty-icon, .lm-unsigned-icon {
  width: 52px; height: 52px;
  background: var(--card2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 22px;
}
.lm-empty-title, .lm-unsigned-text {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--text);
}
.lm-empty-sub, .lm-unsigned-sub {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted); line-height: 1.6;
}

.lm-skeleton-wrap { padding: 16px; }
.lm-skeleton-eyebrow {
  height: 7px; width: 90px; background: var(--border);
  margin-bottom: 14px; animation: lm-shimmer 1.4s ease infinite;
}
.lm-skeleton-line {
  height: 13px; background: var(--border);
  margin-bottom: 10px; animation: lm-shimmer 1.4s ease infinite;
}
.lm-sk-long   { width: 90%; animation-delay: 0.05s; }
.lm-sk-medium { width: 70%; animation-delay: 0.1s; }
.lm-sk-short  { width: 55%; animation-delay: 0.15s; }
.lm-skeleton-thread {
  height: 42px; background: var(--border);
  margin-bottom: 8px; animation: lm-shimmer 1.4s ease infinite;
}
.lm-skeleton-thread:nth-child(2) { animation-delay: 0.1s; width: 88%; }

@keyframes lm-shimmer {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
