/* ============================================================================
   Myco — Styles spécifiques
   Version : 1.3.1 (VNCT Design System)
   
   Ce fichier contient UNIQUEMENT les styles propres à Myco.
   Les variables, thèmes, FAB, modals, toasts, nav, version badge
   sont gérés par vnct-design-system.css et vnct-common.js.
   
   Variables utilisées (du design system) :
   --bg-primary, --bg-secondary, --bg-tertiary
   --text-primary, --text-secondary, --text-muted
   --accent, --accent-h, --accent-s, --accent-l
   --border-default, --border-hover
   --success, --warning, --danger
   --radius-sm, --radius-md, --radius-lg, --radius-full
   --space-*, --text-*, --font-*
   --neon-shadow-sm, --neon-shadow-md
   ============================================================================ */

/* ── Layout ── */
.container {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
  padding: var(--space-8) var(--space-5) var(--space-12);
}

.header { text-align: center; margin-bottom: var(--space-10); }
.logo {
  /* Hero landing : clamp fluid 40px → 60px, aligné sur Ostra.
     --text-2xl (31px) du DS est trop timide pour un hero.
     Extraction dans le DS commun trackée dans Nexus #32. */
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}
.logo span { color: var(--accent); }
.subtitle {
  color: var(--text-muted); font-size: var(--text-sm);
  font-weight: var(--font-light); letter-spacing: 0.5px;
}

/* ── Status bar ── */
.status-bar {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); margin-bottom: var(--space-8);
  font-size: var(--text-xs); color: var(--text-muted);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.3s, box-shadow 0.3s;
}
.status-dot.connected {
  background: var(--success);
  box-shadow: 0 0 8px hsla(142, 71%, 45%, 0.4);
}
.status-dot.waiting {
  background: var(--warning);
  animation: pulse-dot 1.5s ease infinite;
}
.status-dot.server {
  background: var(--success);
  box-shadow: 0 0 8px hsla(142, 71%, 45%, 0.4);
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── Mode tabs ── */
.mode-tabs {
  display: flex; gap: 4px;
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 4px; margin-bottom: var(--space-8);
}
.mode-tab {
  flex: 1; padding: var(--space-3) var(--space-5);
  border: none; border-radius: var(--radius-md);
  background: transparent; color: var(--text-muted);
  font-family: var(--font-family); font-size: var(--text-sm); font-weight: var(--font-medium);
  cursor: pointer; transition: all 0.25s;
}
.mode-tab.active {
  background: var(--accent); color: #000;
  box-shadow: 0 2px 12px hsla(var(--accent-h), var(--accent-s), 60%, 0.3);
}
.mode-tab:not(.active):hover { color: var(--text-primary); }
.mode-tab.active.cyan-mode {
  background: var(--accent); color: #000;
  box-shadow: 0 2px 12px hsla(var(--accent-h), var(--accent-s), 60%, 0.3);
}

/* ── Panels ── */
.panel { display: none; }
.panel.active { display: block; }
/* Animation de switch gérée par JS (_staggerAnimate) */

/* ── Server status card ── */
.server-status {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5); margin-bottom: var(--space-6);
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); transition: border-color 0.3s;
}
.server-status.connected { border-color: var(--success); }
.server-status.error { border-color: var(--danger); }
.server-status-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  background: var(--text-muted); transition: all 0.3s;
}
.server-status.connected .server-status-dot {
  background: var(--success);
  box-shadow: 0 0 10px hsla(142, 71%, 45%, 0.4);
}
.server-status.connecting .server-status-dot {
  background: var(--warning); animation: pulse-dot 1.5s ease infinite;
}
.server-status.error .server-status-dot { background: var(--danger); }
.server-status-info { flex: 1; }
.server-status-label { font-size: var(--text-sm); font-weight: var(--font-medium); }
.server-status-meta { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

/* ── Room section ── */
.room-section {
  margin-bottom: var(--space-6);
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}
.room-current {
  display: flex; align-items: center; justify-content: space-between;
}
.room-current-info {
  display: flex; align-items: center; gap: var(--space-2);
  font-weight: var(--font-medium); font-size: var(--text-sm);
}
.room-icon { font-size: 1.1rem; }
.room-label { color: var(--text-primary); }
.room-actions { display: flex; gap: var(--space-1); }
.room-btn {
  background: var(--bg-tertiary); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); padding: 6px 10px;
  color: var(--text-secondary); cursor: pointer; font-size: 0.85rem;
  transition: all 0.2s;
}
.room-btn:hover { border-color: var(--accent); color: var(--accent); }

.room-info-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--space-3); padding-top: var(--space-3);
  border-top: 1px solid var(--border-default);
}
.room-info-details { display: flex; align-items: center; gap: var(--space-2); }
.room-code {
  font-family: 'Space Mono', monospace; font-size: var(--text-xs);
  color: var(--accent); background: var(--bg-tertiary);
  padding: 4px 8px; border-radius: var(--radius-sm);
}
.room-copy-code, .room-copy-link {
  background: none; border: none; cursor: pointer; font-size: 0.8rem;
  color: var(--text-muted); transition: color 0.2s;
}
.room-copy-code:hover, .room-copy-link:hover { color: var(--accent); }
.room-leave-btn {
  background: var(--bg-tertiary); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); padding: 4px 12px;
  color: var(--text-secondary); cursor: pointer; font-size: var(--text-xs);
  transition: all 0.2s;
}
.room-leave-btn:hover { border-color: #e74c3c; color: #e74c3c; }

/* Room modal */
.room-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.room-modal-overlay.active { opacity: 1; pointer-events: all; }
.room-modal {
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: var(--space-6);
  width: 90%; max-width: 400px;
}
.room-modal h3 { margin-bottom: var(--space-4); font-size: 1.1rem; }
.room-modal input, .room-modal select {
  width: 100%; padding: 10px 14px; background: var(--bg-tertiary);
  border: 1px solid var(--border-default); border-radius: var(--radius-md);
  color: var(--text-primary); font-size: var(--text-sm); margin-bottom: var(--space-3);
  font-family: inherit;
}
.room-modal input:focus { border-color: var(--accent); outline: none; }
.room-modal-btns {
  display: flex; gap: var(--space-2); margin-top: var(--space-4);
}
.room-modal-btns button {
  flex: 1; padding: 10px; border-radius: var(--radius-md); border: none;
  cursor: pointer; font-weight: var(--font-medium); font-size: var(--text-sm);
  transition: all 0.2s;
}
.room-modal-btns .btn-primary {
  background: var(--accent); color: #fff;
}
.room-modal-btns .btn-secondary {
  background: var(--bg-tertiary); color: var(--text-secondary); border: 1px solid var(--border-default);
}

/* Room list */
.room-list { max-height: 300px; overflow-y: auto; }
.room-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3); background: var(--bg-tertiary);
  border: 1px solid var(--border-default); border-radius: var(--radius-md);
  margin-bottom: var(--space-2); cursor: pointer; transition: border-color 0.2s;
}
.room-list-item:hover { border-color: var(--accent); }
.room-list-item .room-list-name { font-weight: var(--font-medium); font-size: var(--text-sm); }
.room-list-item .room-list-code { font-family: 'Space Mono', monospace; font-size: var(--text-xs); color: var(--text-muted); }
.room-list-item .room-list-badge {
  font-size: 0.65rem; padding: 3px 10px; border-radius: 100px;
  background: var(--accent); color: #fff; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.room-list-item .room-list-actions { display: flex; align-items: center; gap: var(--space-3); }
.room-list-delete {
  background: var(--bg-tertiary); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); cursor: pointer; color: var(--text-muted);
  font-size: 1.1rem; padding: 6px 8px; transition: all 0.2s; line-height: 1;
}
.room-list-delete:hover { border-color: #e74c3c; color: #e74c3c; }
.room-list-delete:hover { color: #e74c3c; }

/* ── Peer grid ── */
.peer-grid-section { margin-bottom: var(--space-8); }
.peer-grid-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-4);
}
.peer-grid-header h3 { font-size: var(--text-sm); font-weight: var(--font-semibold); }
.peer-count {
  background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.15);
  color: var(--accent);
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: var(--font-bold);
}
.peer-grid-empty {
  padding: var(--space-10) var(--space-5); text-align: center; color: var(--text-muted);
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); font-size: var(--text-sm); font-weight: var(--font-light);
  margin-top: var(--space-3);
}
.peer-grid-empty .icon { font-size: 2.5rem; margin-bottom: var(--space-3); opacity: 0.5; }
.peer-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--space-3);
}
.peer-card {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); cursor: pointer; transition: all 0.25s;
  text-align: center;
}
.peer-card:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: var(--neon-shadow-md);
}
.peer-card.self { border-color: var(--accent); cursor: default; opacity: 0.6; }
.peer-card.self:hover { transform: none; box-shadow: none; }
.peer-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.1);
  border: 2px solid var(--border-default);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.peer-card.self .peer-avatar { border-color: var(--accent); }
.peer-name { font-size: var(--text-xs); font-weight: var(--font-medium); line-height: 1.3; }
.peer-you { font-size: var(--text-xs); color: var(--accent); }

/* ── Drop zone ── */
.drop-zone {
  border: 2px dashed var(--border-default); border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-5); text-align: center; cursor: pointer;
  transition: all 0.3s; background: var(--bg-secondary);
  position: relative; overflow: hidden;
}
.drop-zone:hover, .drop-zone.dragover {
  border-color: var(--accent);
  background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.05);
}
.drop-zone-icon { font-size: 2.5rem; margin-bottom: var(--space-3); display: block; opacity: 0.7; }
.drop-zone-text { font-size: var(--text-sm); color: var(--text-muted); font-weight: var(--font-light); }
.drop-zone-text strong { color: var(--accent); font-weight: var(--font-medium); }
.drop-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* ── File info ── */
.file-info {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); margin-top: var(--space-4);
}
.file-icon {
  width: 44px; height: 44px;
  background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.file-meta { flex: 1; min-width: 0; }
.file-name {
  font-weight: var(--font-medium); font-size: var(--text-sm);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.file-size { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

/* ── SDP sections (manual mode) ── */
.sdp-section { margin-top: var(--space-6); }
.sdp-label {
  font-size: var(--text-xs); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: var(--space-2);
  display: flex; align-items: center; gap: var(--space-2);
}
.sdp-label .step {
  background: var(--accent); color: #000;
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: var(--font-bold);
}
.sdp-box {
  width: 100%; min-height: 100px;
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: var(--space-4);
  color: var(--text-primary); font-family: monospace; font-size: var(--text-xs);
  line-height: 1.5; resize: vertical; outline: none; transition: border-color 0.2s;
}
.sdp-box:focus { border-color: var(--accent); }
.sdp-box[readonly] { cursor: default; color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border: none; border-radius: var(--radius-full);
  font-family: var(--font-family); font-size: var(--text-sm); font-weight: var(--font-medium);
  cursor: pointer; transition: all 0.25s;
}
.btn-primary {
  background: var(--accent); color: #000;
  box-shadow: 0 2px 12px hsla(var(--accent-h), var(--accent-s), 60%, 0.3);
}
.btn-primary:hover { box-shadow: var(--neon-shadow-md); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-cyan {
  background: var(--accent); color: #000;
  box-shadow: 0 2px 12px hsla(var(--accent-h), var(--accent-s), 60%, 0.3);
}
.btn-cyan:hover { box-shadow: var(--neon-shadow-md); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text-primary); border: 1px solid var(--border-default);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger {
  background: transparent; color: var(--text-muted); border: 1px solid var(--border-default);
}
.btn-danger:hover { border-color: var(--danger); color: var(--danger); }
.btn-row { display: flex; gap: var(--space-3); margin-top: var(--space-3); flex-wrap: wrap; }

/* ── Progress bars ── */
.progress-container { margin-top: var(--space-6); display: none; }
.progress-container.active { display: block; }
.progress-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-2); font-size: var(--text-sm);
}
.progress-bar-bg {
  height: 6px; background: var(--bg-tertiary);
  border-radius: var(--radius-full); overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: var(--radius-full); width: 0%; transition: width 0.15s linear;
}
.progress-bar-fill.complete { background: var(--success); }
.progress-stats {
  display: flex; justify-content: space-between;
  margin-top: var(--space-1); font-size: var(--text-xs); color: var(--text-muted);
}

/* ── Steps guide (manual mode) ── */
.steps-guide {
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: var(--space-6); margin-bottom: var(--space-6);
}
.steps-guide h3 { font-size: var(--text-sm); font-weight: var(--font-semibold); margin-bottom: var(--space-4); }
.step-item {
  display: flex; gap: var(--space-3); padding: var(--space-2) 0;
  font-size: var(--text-sm); color: var(--text-muted); font-weight: var(--font-light);
}
.step-item .n {
  background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.15);
  color: var(--accent); width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: var(--font-bold); flex-shrink: 0;
}
.step-item.done .n { background: hsla(142, 71%, 45%, 0.2); color: var(--success); }
.step-item.done { color: var(--success); }

/* ── Transfer UI ── */
.auto-transfer {
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: var(--space-6); margin-top: var(--space-4);
}
.auto-transfer h4 {
  font-size: var(--text-sm); font-weight: var(--font-semibold);
  margin-bottom: var(--space-4); display: flex; align-items: center; gap: var(--space-2);
}
.auto-transfer .peer-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); color: var(--accent); font-weight: var(--font-medium);
}

/* ── Incoming request ── */
.incoming-request {
  background: var(--bg-secondary); border: 1px solid var(--accent);
  border-radius: var(--radius-lg); padding: var(--space-6); margin-top: var(--space-4);
  animation: pd-fadeIn 0.3s ease;
}
.incoming-request h4 { font-size: var(--text-sm); font-weight: var(--font-semibold); margin-bottom: var(--space-2); }
.incoming-request .details { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-4); }

/* ── File queue ── */
.file-queue { margin-top: var(--space-3); }
.file-queue-item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); margin-bottom: 6px; font-size: var(--text-sm);
}
.file-queue-item .fq-icon { font-size: 1.1rem; flex-shrink: 0; }
.file-queue-item .fq-name {
  flex: 1; min-width: 0; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; font-weight: var(--font-medium);
}
.file-queue-item .fq-size { color: var(--text-muted); font-size: var(--text-xs); flex-shrink: 0; }
.file-queue-item .fq-remove {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: var(--text-sm); padding: 2px 6px; border-radius: 4px; transition: all 0.2s;
}
.file-queue-item .fq-remove:hover { color: var(--danger); background: hsla(0, 84%, 60%, 0.1); }
.file-queue-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-2); margin-top: var(--space-4);
}
.file-queue-header span { font-size: var(--text-xs); color: var(--text-muted); }
.file-queue-clear {
  background: none; border: 1px solid var(--border-default); color: var(--text-muted);
  padding: 4px 12px; border-radius: var(--radius-full); font-size: var(--text-xs); cursor: pointer;
  font-family: var(--font-family); transition: all 0.2s;
}
.file-queue-clear:hover { border-color: var(--danger); color: var(--danger); }
.file-queue-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.1);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md); margin-top: var(--space-2);
  font-size: var(--text-sm); font-weight: var(--font-medium); color: var(--accent);
}

/* ── Toast (utilisé par le JS WebRTC) ── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--bg-tertiary); border: 1px solid var(--border-default);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  font-size: var(--text-sm); color: var(--text-primary);
  opacity: 0; transition: all 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 100; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── How it works ── */
.how-it-works {
  margin-top: var(--space-10); text-align: center;
  padding: var(--space-8) var(--space-5);
  border-top: 1px solid var(--border-default);
}
.how-it-works h3 {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-muted); margin-bottom: var(--space-6);
}
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.how-card {
  padding: var(--space-5);
  background: var(--bg-secondary); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.how-card-icon { font-size: 1.6rem; margin-bottom: var(--space-3); }
.how-card-title { font-weight: var(--font-semibold); font-size: var(--text-sm); margin-bottom: 4px; }
.how-card-desc { font-size: var(--text-xs); color: var(--text-muted); font-weight: var(--font-light); line-height: 1.5; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .container { padding: var(--space-6) var(--space-4) var(--space-8); }
  /* .logo responsive géré nativement par clamp() — pas de override nécessaire */
  .peer-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .how-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   Landing enrichie (v1.3.0) — version légère pour Myco
   Version minimale : encart no-log + lore uniquement.
   Pas de 3 steps (déjà présents en mode manuel via .how-grid),
   pas de tags (UI déjà dense avec status/rooms/peer grid).
   ============================================================================ */

.myco-landing {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-5) var(--space-12);
}

/* --- Encart no-log --- */
.myco-trust {
  margin-top: var(--space-10);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: var(--bg-secondary);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.myco-trust__icon {
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: flex;
  justify-content: center;
}
.myco-trust__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.myco-trust__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* --- Section lore (origine du nom) --- */
.myco-lore {
  margin-top: var(--space-12);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.myco-lore__separator {
  color: var(--text-muted);
  font-size: var(--text-sm);
  letter-spacing: 0.5em;
  margin-bottom: var(--space-5);
  user-select: none;
}
.myco-lore__title {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}
.myco-lore__body {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}
.myco-lore__body strong {
  color: var(--text-primary);
  font-weight: var(--font-semibold);
}
.myco-lore__body em {
  color: var(--accent);
  font-style: italic;
}
.myco-lore__tagline {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

@media (max-width: 720px) {
  .myco-trust,
  .myco-lore {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }
}
