/* ==========================================================================
   Peace of Mind — Apple-inspired design system
   Soft blue · calming green · white · light gray · dark mode
   ========================================================================== */

:root {
  /* Brand palette */
  --blue: #4a90e2;
  --blue-soft: #7fb2f0;
  --blue-deep: #2f6fc0;
  --green: #56c596;
  --green-soft: #8fe0bd;
  --green-deep: #34a877;
  --lilac: #a99be0;

  /* Light theme surfaces */
  --bg: #eef3f8;
  --bg-grad-1: #eaf2fb;
  --bg-grad-2: #eef7f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --surface-2: #f4f7fb;
  --card-border: rgba(255, 255, 255, 0.8);
  --shadow: 0 10px 30px rgba(31, 72, 128, 0.10);
  --shadow-sm: 0 4px 14px rgba(31, 72, 128, 0.08);

  /* Text */
  --text: #1c2733;
  --text-2: #5c6b7a;
  --text-3: #8a97a5;
  --line: rgba(20, 40, 70, 0.08);

  /* Feedback */
  --danger: #ff5a5f;
  --danger-deep: #e53946;
  --warn: #ffb020;

  /* Shape & motion */
  --r-lg: 26px;
  --r-md: 20px;
  --r-sm: 14px;
  --r-xs: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nav-h: 76px;
}

[data-theme="dark"] {
  --bg: #0e1420;
  --bg-grad-1: #101a2b;
  --bg-grad-2: #0d1a19;
  --surface: rgba(30, 41, 59, 0.62);
  --surface-solid: #18212f;
  --surface-2: #1c2636;
  --card-border: rgba(255, 255, 255, 0.06);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.35);
  --text: #e8eef6;
  --text-2: #9fb0c3;
  --text-3: #6c7d90;
  --line: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, var(--bg-grad-1), transparent 60%),
    radial-gradient(1000px 700px at -10% 20%, var(--bg-grad-2), transparent 55%);
  background-attachment: fixed;
  min-height: 100vh;
  min-height: 100dvh; /* mobile-first: respect the shrinking browser toolbar */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent; /* no grey flash on tap */
  overscroll-behavior-y: none;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
}

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.15; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 8px; }

/* ---------- Layout shell ----------
   MOBILE-FIRST: base styles target a phone. The 780px cap keeps the
   calm single-column layout readable when viewed on a tablet/desktop. */
.app { max-width: 780px; margin: 0 auto; padding: 0 18px; }

/* Keep form text at 16px so iOS never auto-zooms when an input is focused */
input:not([type="range"]), textarea, select { font-size: 16px; }

/* Small phones (iPhone SE / older Androids ~320-380px wide) */
@media (max-width: 380px) {
  .app { padding: 0 14px; }
  .page-head h1 { font-size: 26px; }
  .hero { padding: 20px; }
  .hero h2 { font-size: 23px; }
  .mood-opt { font-size: 26px; border-radius: 15px; }
  .tile { padding: 12px 8px; }
  .tile .ti { width: 42px; height: 42px; }
}

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 4px 12px;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(145deg, var(--blue), var(--green));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-name { font-size: 18px; font-weight: 650; letter-spacing: -0.02em; }
.brand-name small { display: block; font-size: 11px; font-weight: 500; color: var(--text-2); letter-spacing: 0; }

.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--card-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), background 0.3s;
}
.icon-btn:hover { transform: translateY(-1px); }
.icon-btn:active { transform: scale(0.94); }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  padding: 20px;
}
.card-tight { padding: 16px; }
.section-title { font-size: 13px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); margin: 26px 4px 12px; }
.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 520px) { .grid-3 { grid-template-columns: 1fr 1fr; } }

/* ---------- Views / routing ---------- */
.view { display: none; animation: fadeUp var(--dur) var(--ease); }
.view.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.page-head { margin: 8px 4px 4px; }
.page-head h1 { font-size: 30px; font-weight: 700; }
.page-head p { color: var(--text-2); margin-top: 4px; }

/* ---------- Dashboard hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  color: #fff; border-radius: var(--r-lg); padding: 24px;
  box-shadow: 0 18px 40px rgba(47, 111, 192, 0.30);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.16); filter: blur(4px);
}
.hero h2 { font-size: 26px; font-weight: 700; }
.hero p { opacity: 0.92; margin-top: 6px; max-width: 90%; }
.hero .chips { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.chip {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 550;
  backdrop-filter: blur(6px);
}

/* ---------- Quick tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 620px) { .tiles { grid-template-columns: repeat(4, 1fr); gap: 10px; } }
.tile {
  background: var(--surface); border: 1px solid var(--card-border);
  border-radius: var(--r-sm); padding: 14px 10px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.tile:hover { transform: translateY(-2px); }
.tile:active { transform: scale(0.96); }
.tile .ti {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  color: #fff;
}
.tile .ti svg { width: 22px; height: 22px; }
.tile span { font-size: 12px; font-weight: 600; color: var(--text-2); }
.bg-blue { background: linear-gradient(145deg, var(--blue-soft), var(--blue)); }
.bg-green { background: linear-gradient(145deg, var(--green-soft), var(--green)); }
.bg-lilac { background: linear-gradient(145deg, #c3b8f0, var(--lilac)); }
.bg-warm { background: linear-gradient(145deg, #ffc9a3, #ff9f6b); }

/* ---------- List rows ---------- */
.row { display: flex; align-items: center; gap: 13px; padding: 12px 4px; }
.row + .row { border-top: 1px solid var(--line); }
.row-ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; color: #fff; }
.row-ic svg { width: 20px; height: 20px; }
.row-main { flex: 1; min-width: 0; }
.row-main strong { display: block; font-size: 15px; font-weight: 600; }
.row-main small { color: var(--text-2); font-size: 13px; }
.row-time { color: var(--text-2); font-size: 13px; font-weight: 600; white-space: nowrap; }
.pill { font-size: 11px; font-weight: 650; padding: 3px 9px; border-radius: 999px; background: var(--surface-2); color: var(--text-2); }

/* ---------- Mood ---------- */
.mood-scale { display: flex; justify-content: space-between; gap: 8px; margin-top: 6px; }
.mood-opt {
  flex: 1; aspect-ratio: 1; border-radius: 18px; font-size: 30px;
  display: grid; place-items: center; background: var(--surface-2);
  border: 2px solid transparent; transition: transform 0.18s var(--ease), border-color 0.2s, background 0.2s;
}
.mood-opt small { display: none; }
.mood-opt:hover { transform: translateY(-3px); }
.mood-opt.sel { border-color: var(--blue); background: linear-gradient(145deg, rgba(74,144,226,0.14), rgba(86,197,150,0.14)); transform: translateY(-3px); }
textarea.note {
  width: 100%; margin-top: 14px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: var(--surface-2); padding: 13px; color: var(--text); font-size: 15px; resize: vertical; min-height: 72px; font-family: inherit;
}

/* Bars chart */
.bars { display: flex; align-items: flex-end; gap: 8px; height: 150px; margin-top: 8px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bar {
  width: 100%; border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  animation: grow 0.7s var(--ease) both;
}
@keyframes grow { from { height: 0 !important; opacity: 0.4; } }
.bar-col span { font-size: 11px; color: var(--text-3); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 999px; font-weight: 650; font-size: 15px;
  background: linear-gradient(135deg, var(--blue), var(--green-deep)); color: #fff;
  box-shadow: 0 8px 20px rgba(47, 111, 192, 0.28); transition: transform 0.18s var(--ease), filter 0.2s;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn.full { width: 100%; }
.btn.ghost { background: var(--surface-2); color: var(--text); box-shadow: none; border: 1px solid var(--line); }
.btn.danger { background: linear-gradient(135deg, var(--danger), var(--danger-deep)); box-shadow: 0 8px 20px rgba(229,57,70,0.32); }

/* ---------- Breathing ---------- */
.breath-stage { display: grid; place-items: center; padding: 30px 0 10px; }
.breath-orb {
  width: 210px; height: 210px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--green-soft), var(--blue));
  box-shadow: 0 0 60px rgba(86,197,150,0.5); color: #fff; text-align: center;
  transition: transform 4s var(--ease);
}
.breath-orb.run { animation: breathe var(--breath-cycle, 16s) var(--ease) infinite; }
.breath-orb b { font-size: 22px; font-weight: 650; }
.breath-orb small { display:block; font-size: 13px; opacity: 0.85; margin-top: 2px; }
@keyframes breathe {
  0%   { transform: scale(0.72); }
  30%  { transform: scale(1.08); }
  55%  { transform: scale(1.08); }
  85%  { transform: scale(0.72); }
  100% { transform: scale(0.72); }
}
.tech-row { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 8px; }
.tech {
  flex: none; padding: 11px 16px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background: var(--surface-2); border: 1px solid var(--line); transition: all 0.2s;
}
.tech.sel { background: linear-gradient(135deg, var(--blue), var(--green-deep)); color: #fff; border-color: transparent; }

/* ---------- Meditation / library cards ---------- */
.med { position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 128px; padding: 16px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow-sm); }
.med h4 { font-size: 16px; font-weight: 650; }
.med small { opacity: 0.9; font-size: 12px; }
.g1 { background: linear-gradient(150deg, #5b8def, #34a877); }
.g2 { background: linear-gradient(150deg, #8f7fe0, #4a90e2); }
.g3 { background: linear-gradient(150deg, #56c596, #2f9e8f); }
.g4 { background: linear-gradient(150deg, #ff9f6b, #e2607a); }
.g5 { background: linear-gradient(150deg, #4a90e2, #7f6fe0); }
.g6 { background: linear-gradient(150deg, #34a877, #4a90e2); }

/* ---------- Calendar ---------- */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow { font-size: 11px; font-weight: 650; color: var(--text-3); text-align: center; padding-bottom: 4px; }
.cal-day { aspect-ratio: 1; border-radius: 12px; display: grid; place-items: center; font-size: 14px; font-weight: 550; position: relative; background: var(--surface-2); transition: background 0.2s; }
.cal-day.muted { color: var(--text-3); background: transparent; }
.cal-day.today { background: linear-gradient(135deg, var(--blue), var(--green-deep)); color: #fff; }
.cal-day .dot { position: absolute; bottom: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.cal-day.today .dot { background: #fff; }

/* ---------- Emergency ---------- */
.sos-banner {
  background: linear-gradient(135deg, var(--danger), var(--danger-deep)); color: #fff;
  border-radius: var(--r-lg); padding: 22px; box-shadow: 0 16px 40px rgba(229,57,70,0.34);
}
.sos-banner h2 { font-size: 22px; }
.sos-banner p { opacity: 0.95; margin-top: 4px; }
.sos-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.sos-btn { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 16px; border-radius: var(--r-sm); font-weight: 700; font-size: 16px; text-align: center; }
.sos-btn b { font-size: 20px; display: block; }
.contact-actions { display: flex; gap: 8px; }
.ca { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); }
.ca svg { width: 18px; height: 18px; color: var(--blue); }

/* Floating SOS */
.sos-fab {
  position: fixed; right: 18px; bottom: calc(var(--nav-h) + 14px + env(safe-area-inset-bottom));
  width: 58px; height: 58px; border-radius: 50%; z-index: 45;
  background: linear-gradient(135deg, var(--danger), var(--danger-deep)); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
  box-shadow: 0 10px 28px rgba(229,57,70,0.5); animation: pulse 2.6s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 10px 28px rgba(229,57,70,0.5);} 50% { box-shadow: 0 10px 34px rgba(229,57,70,0.85);} }

/* ---------- Chat / Peace Assistant ---------- */
.chat-wrap { display: flex; flex-direction: column; height: calc(100vh - var(--nav-h) - 92px); min-height: 420px; }
.chat-log { flex: 1; overflow-y: auto; padding: 8px 2px 12px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 82%; padding: 12px 15px; border-radius: 20px; font-size: 15px; line-height: 1.45; animation: fadeUp 0.35s var(--ease); }
.msg.bot { align-self: flex-start; background: var(--surface); border: 1px solid var(--card-border); border-bottom-left-radius: 7px; box-shadow: var(--shadow-sm); }
.msg.me { align-self: flex-end; background: linear-gradient(135deg, var(--blue), var(--green-deep)); color: #fff; border-bottom-right-radius: 7px; }
.msg.crisis { align-self: stretch; max-width: 100%; background: linear-gradient(135deg, #fff2f2, #ffe9ea); border: 1.5px solid var(--danger); color: #7a1620; }
[data-theme="dark"] .msg.crisis { background: linear-gradient(135deg, #2a1416, #351a1d); color: #ffd5d8; }
.msg.crisis h4 { color: var(--danger-deep); font-size: 16px; margin-bottom: 8px; }
[data-theme="dark"] .msg.crisis h4 { color: #ff8a90; }
.crisis-line { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(255,255,255,0.6); border-radius: 12px; margin-top: 8px; font-weight: 600; }
[data-theme="dark"] .crisis-line { background: rgba(255,255,255,0.06); }
.crisis-line .big { font-size: 20px; font-weight: 800; color: var(--danger-deep); }
[data-theme="dark"] .crisis-line .big { color: #ff8a90; }

.typing { align-self: flex-start; display: flex; gap: 4px; padding: 14px 16px; background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-sm); }
.typing i { width: 8px; height: 8px; border-radius: 50%; background: var(--text-3); animation: blink 1.3s infinite both; }
.typing i:nth-child(2){ animation-delay: 0.2s;} .typing i:nth-child(3){ animation-delay: 0.4s;}
@keyframes blink { 0%,80%,100%{ opacity: 0.3; transform: translateY(0);} 40%{ opacity: 1; transform: translateY(-3px);} }

.suggests { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 10px; }
.suggest { flex: none; padding: 9px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; background: var(--surface); border: 1px solid var(--card-border); color: var(--blue-deep); box-shadow: var(--shadow-sm); }
[data-theme="dark"] .suggest { color: var(--blue-soft); }

.chat-input { display: flex; gap: 10px; align-items: flex-end; padding: 8px 0 2px; }
.chat-input textarea {
  flex: 1; border-radius: 22px; border: 1px solid var(--line); background: var(--surface-solid);
  padding: 12px 16px; font-size: 15px; color: var(--text); resize: none; max-height: 120px; font-family: inherit;
}
.send-btn { width: 46px; height: 46px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--blue), var(--green-deep)); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform 0.15s; }
.send-btn:active { transform: scale(0.9); }
.send-btn svg { width: 20px; height: 20px; }
.disclaimer { font-size: 11px; color: var(--text-3); text-align: center; padding: 6px 12px 0; }

/* ---------- Bottom nav ---------- */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 44; height: calc(var(--nav-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: flex; justify-content: space-around; align-items: center;
  background: var(--surface); border-top: 1px solid var(--card-border);
  backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
}
.tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--text-3); font-size: 10.5px; font-weight: 600; padding: 8px 10px; transition: color 0.2s; }
.tab svg { width: 24px; height: 24px; }
.tab.active { color: var(--blue); }
.tab.active svg { transform: translateY(-1px); }

/* ---------- Toast / modal ---------- */
.toast { position: fixed; left: 50%; bottom: calc(var(--nav-h) + 20px); transform: translateX(-50%) translateY(20px); background: var(--text); color: var(--surface-solid); padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: all 0.3s var(--ease); z-index: 60; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
[data-theme="dark"] .toast { background: #e8eef6; color: #101a2b; }

/* ---------- Meditation player ---------- */
.med-player {
  position: fixed; inset: 0; z-index: 80;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 32px 24px calc(40px + env(safe-area-inset-bottom));
  background: radial-gradient(120% 90% at 50% 22%, rgba(74,144,226,0.22), transparent 60%), var(--bg);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transform: scale(1.02);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.med-player.show { opacity: 1; pointer-events: auto; transform: scale(1); }
.mp-close {
  position: absolute; top: calc(16px + env(safe-area-inset-top)); right: 18px;
  width: 40px; height: 40px; border-radius: 50%; font-size: 24px; line-height: 1;
  background: var(--surface-2); color: var(--text-2); border: 1px solid var(--line);
}
.mp-visual { display: grid; place-items: center; height: 240px; }
.mp-orb {
  width: 200px; height: 200px; border-radius: 50%;
  background: linear-gradient(150deg, var(--blue), var(--green-deep));
  box-shadow: 0 24px 70px rgba(31,72,128,0.35), inset 0 0 60px rgba(255,255,255,0.25);
  opacity: 0.92;
}
.mp-orb.run { animation: mp-breathe 8s var(--ease) infinite; }
@keyframes mp-breathe {
  0%, 100% { transform: scale(0.82); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}
.mp-meta { text-align: center; }
.mp-meta h2 { font-size: 24px; font-weight: 700; }
.mp-meta small { color: var(--text-2); font-size: 14px; }
.mp-bar { width: min(360px, 82vw); height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.mp-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width 0.25s linear; }
.mp-time { width: min(360px, 82vw); display: flex; justify-content: space-between; font-size: 13px; color: var(--text-3); font-variant-numeric: tabular-nums; }
.mp-play {
  width: 74px; height: 74px; border-radius: 50%; margin-top: 4px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  box-shadow: 0 12px 30px rgba(31,72,128,0.30);
}
.mp-play svg { width: 34px; height: 34px; }
.mp-vol { display: flex; align-items: center; gap: 10px; width: min(300px, 74vw); color: var(--text-3); }
.mp-vol svg { width: 20px; height: 20px; }
.mp-vol input { flex: 1; accent-color: var(--blue); }
.reduce-motion .mp-orb.run { animation: none; }

.reduce-motion * { animation: none !important; transition: none !important; }

/* Scrollbars */
.chat-log::-webkit-scrollbar, .tech-row::-webkit-scrollbar, .suggests::-webkit-scrollbar { height: 0; width: 0; }
