/* ============================================================
   Callie — Prototype styles (Phase 5.2, handoff-ready)
   Pure CSS. No frameworks. No JS.
   Theme = tokens only. Switch by <html data-theme="..."> :
     (default) evergreen · coral · ink · paper · dark
   ============================================================ */

/* ---------- Theme tokens — DEFAULT: Evergreen ---------- */
:root, [data-theme="evergreen"] {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --sunken: #EFEDE7;
  --text: #1E1D19;
  --text-2: #67635B;
  --text-3: #9A968C;
  --accent: #2F6B57;
  --accent-hover: #285C4A;
  --accent-pressed: #21503F;
  --accent-soft: #E7F0EB;
  --success: #2F6B57;       /* done = brand: for a helper, "done" is the brand */
  --success-soft: #E7F0EB;
  --warning: #B7791F;
  --warning-soft: #FAF0DC;
  --danger: #C0392B;
  --border: #E5E2DA;
  --focus: rgba(47,107,87,.42);
  --shadow-card: 0 1px 3px rgba(30,29,25,.08);
  --shadow-float: 0 8px 32px rgba(30,29,25,.16);
  --ease: cubic-bezier(.2, 0, 0, 1);
  --r-s: 8px; --r-input: 12px; --r-card: 16px;
  --r-bubble: 18px; --r-sheet: 20px; --r-full: 999px;
}

/* ---------- Coral (original, warm & friendly) ---------- */
[data-theme="coral"] {
  --bg: #FAF8F5; --surface: #FFFFFF; --sunken: #F1EEE9;
  --text: #201D19; --text-2: #6E675F; --text-3: #9A948C;
  --accent: #E2604A; --accent-hover: #D14F39; --accent-pressed: #B84330; --accent-soft: #FBEAE5;
  --success: #2E7D5B; --success-soft: #E6F2EC; --warning: #B7791F; --warning-soft: #FAF0DC;
  --danger: #C0392B; --border: #E7E2DB; --focus: rgba(226,96,74,.45);
}

/* ---------- Ink & Ivory (monochrome luxury) ---------- */
[data-theme="ink"] {
  --bg: #FBFAF7; --surface: #FFFFFF; --sunken: #EEEBE4;
  --text: #1A1815; --text-2: #615C54; --text-3: #9C978D;
  --accent: #232019; --accent-hover: #100E0A; --accent-pressed: #000000; --accent-soft: #ECE8E1;
  --success: #3F7A5F; --success-soft: #E8F0EB; --warning: #A9791F; --warning-soft: #F6EEDB;
  --danger: #B23A2C; --border: #E6E2D9; --focus: rgba(35,32,25,.35);
}

/* ---------- Paper (quiet, earthy, minimal) ---------- */
[data-theme="paper"] {
  --bg: #F6F3ED; --surface: #FCFBF8; --sunken: #ECE8E0;
  --text: #33302A; --text-2: #726C62; --text-3: #A39D91;
  --accent: #9A5B44; --accent-hover: #874C37; --accent-pressed: #74402E; --accent-soft: #EFE6DF;
  --success: #5E7A54; --success-soft: #EAEEE3; --warning: #A9791F; --warning-soft: #F5EDDB;
  --danger: #B4463A; --border: #E4DFD5; --focus: rgba(154,91,68,.4);
}

/* ---------- Dark (warm night, soft glow) ---------- */
[data-theme="dark"] {
  --bg: #15130F; --surface: #211E19; --sunken: #1B1814;
  --text: #F1EEE7; --text-2: #A7A093; --text-3: #726B5F;
  --accent: #5FB89A; --accent-hover: #6FC7A9; --accent-pressed: #4FA588; --accent-soft: #22302A;
  --success: #5FB89A; --success-soft: #22302A; --warning: #D9A14A; --warning-soft: #332916;
  --danger: #E06052; --border: #332F28; --focus: rgba(95,184,154,.5);
  --shadow-card: 0 0 0 1px #2C2820; --shadow-float: 0 12px 40px rgba(0,0,0,.55);
}

/* A nested themed wrapper must re-establish its own text/bg colors,
   because `color` is inherited as a computed value, not re-resolved. */
[data-theme] { color: var(--text); background: var(--bg); }

/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "cv11";
  background: var(--bg);
  color: var(--text);
  font-size: 15px; line-height: 22px;
  -webkit-font-smoothing: antialiased;
}
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
.num { font-variant-numeric: tabular-nums; }

/* ---------- Type scale ---------- */
.t-display { font-size: 28px; line-height: 34px; font-weight: 600; letter-spacing: -.02em; }
.t-title   { font-size: 20px; line-height: 26px; font-weight: 600; letter-spacing: -.01em; }
.t-chat    { font-size: 17px; line-height: 24px; }
.t-body    { font-size: 15px; line-height: 22px; }
.t-label   { font-size: 15px; line-height: 20px; font-weight: 500; }
.t-caption { font-size: 13px; line-height: 18px; }
.t-micro   { font-size: 11px; line-height: 14px; font-weight: 500; letter-spacing: .01em; }
.muted  { color: var(--text-2); }
.faint  { color: var(--text-3); }

/* ---------- Callie mark (two voice arcs) ---------- */
.mark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border-radius: var(--r-full);
  color: var(--accent); flex: none;
}
.mark svg { width: 55%; height: 55%; }
.mark-24 { width: 24px; height: 24px; }
.mark-32 { width: 32px; height: 32px; }
.mark-48 { width: 48px; height: 48px; }
.mark-64 { width: 64px; height: 64px; }
.mark-96 { width: 96px; height: 96px; }
.breathe { animation: breathe 4s var(--ease) infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.03); } }

.ringing { position: relative; }
.ringing::before, .ringing::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-full);
  border: 2px solid var(--accent); opacity: 0;
  animation: ring 1.6s var(--ease) infinite;
}
.ringing::after { animation-delay: .8s; }
@keyframes ring {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.uavatar {
  width: 32px; height: 32px; border-radius: var(--r-full);
  background: var(--sunken); color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 20px; border-radius: var(--r-input);
  font-size: 15px; font-weight: 500; line-height: 20px;
  transition: background 120ms var(--ease), transform 100ms var(--ease);
}
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { background: var(--accent-pressed); }
.btn-secondary { border: 1px solid var(--border); color: var(--text); }
.btn-secondary:hover { background: rgba(30,29,25,.04); }
.btn-ghost { color: var(--accent); padding: 0 12px; }
.btn-block { width: 100%; }
.btn-hero { height: 56px; padding: 0 32px; font-size: 17px; border-radius: 14px; }

/* "Hear a real call" pill (landing hero) */
.btn-hear {
  display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 8px 0 8px;
  border-radius: var(--r-full); background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-card); transition: transform 100ms var(--ease);
}
.btn-hear:hover { transform: translateY(-1px); }
.btn-hear .play { width: 32px; height: 32px; }
.btn-hear .play svg { width: 15px; height: 15px; }
.btn-hear span { font-size: 15px; font-weight: 500; padding-right: 8px; }

.ibtn {
  width: 44px; height: 44px; display: inline-flex; align-items: center;
  justify-content: center; border-radius: var(--r-full); color: var(--text-2);
  transition: background 120ms var(--ease);
}
.ibtn:hover { background: rgba(30,29,25,.04); }
.ibtn svg { width: 20px; height: 20px; }

/* ---------- Icons ---------- */
.ic { width: 20px; height: 20px; stroke: currentColor; fill: none;
      stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic-16 { width: 16px; height: 16px; }
.ic-24 { width: 24px; height: 24px; }

/* ---------- Chips ---------- */
.chips { display: flex; gap: 8px; flex-wrap: wrap; padding: 8px 0; }
.chip {
  height: 36px; padding: 0 14px; border-radius: var(--r-full);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 500; line-height: 20px;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 120ms var(--ease), transform 100ms var(--ease);
  white-space: nowrap;
}
.chip:hover { border-color: var(--text-3); }
.chip:active { transform: scale(.98); }
.chip-confirm { background: var(--accent-soft); border-color: transparent; color: var(--accent); }
.chip-important { background: var(--warning-soft); border-color: transparent; color: var(--warning); }
/* stacked suggestion chips (first screen) read as an offer, not a toolbar */
.chips-stack { flex-direction: column; align-items: flex-start; gap: 8px; }
.chips-stack .chip { height: 44px; }

/* ---------- App shell ---------- */
.app {
  max-width: 430px; margin: 0 auto; min-height: 100vh;
  min-height: 100dvh; display: flex; flex-direction: column;
  background: var(--bg); position: relative;
}
@media (min-width: 768px) {
  .app { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
}

.topbar {
  height: 56px; padding: 0 12px 0 16px; display: flex; align-items: center; gap: 10px;
  background: var(--surface); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}
.topbar .grow { flex: 1; min-width: 0; }
.topbar-name { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.topbar-status { font-size: 13px; line-height: 16px; color: var(--text-2);
                 display: flex; align-items: center; gap: 6px; }

.nav {
  display: flex; background: var(--surface); border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
  position: sticky; bottom: 0; z-index: 10;
}
.nav a {
  flex: 1; height: 56px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: var(--text-3); font-size: 11px; font-weight: 500; letter-spacing: .01em;
  position: relative;
}
.nav a.active { color: var(--accent); }
.nav .ic-24 { width: 24px; height: 24px; }
.nav .nbadge {
  position: absolute; top: 8px; left: calc(50% + 8px);
  width: 8px; height: 8px; border-radius: var(--r-full); background: var(--accent);
}

.content { flex: 1; overflow-y: auto; }

/* ---------- Chat ---------- */
.chatlog { display: flex; flex-direction: column; gap: 4px; padding: 16px 16px 8px; }
.timestamp { text-align: center; font-size: 13px; color: var(--text-3); margin: 12px 0 8px; }

.msg { max-width: 85%; padding: 12px 14px; font-size: 17px; line-height: 24px;
       border-radius: var(--r-bubble); animation: rise 180ms var(--ease) both; }
.msg-callie { align-self: flex-start; background: var(--surface);
              box-shadow: var(--shadow-card); border-bottom-left-radius: 6px; }
.msg-user { align-self: flex-end; background: var(--accent-soft);
            border-bottom-right-radius: 6px; }
/* two consecutive Callie bubbles read as one person talking */
.msg-callie + .msg-callie { margin-top: 2px; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.typing { align-self: flex-start; background: var(--surface); box-shadow: var(--shadow-card);
          border-radius: var(--r-bubble); border-bottom-left-radius: 6px;
          padding: 14px 16px; display: inline-flex; gap: 5px;
          animation: rise 180ms var(--ease) both; }
.typing i { width: 6px; height: 6px; border-radius: var(--r-full);
            background: var(--text-3); animation: bounce 1.2s infinite var(--ease); }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,60%,100% { transform: none; } 30% { transform: translateY(-4px); } }

.composerbar { padding: 8px 16px 12px; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
.composer {
  display: flex; align-items: center; gap: 4px; min-height: 52px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 4px 4px 4px 18px;
}
.composer input {
  flex: 1; border: none; outline: none; background: none;
  font: inherit; font-size: 17px; color: var(--text); min-width: 0;
}
.composer input::placeholder { color: var(--text-3); }
.send {
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  transition: background 120ms var(--ease);
}
.send svg { width: 20px; height: 20px; }
/* empty field → send is dormant, not a live orange button that does nothing */
.send.idle { background: var(--sunken); color: var(--text-3); }

/* ---------- Cards (Task / Call) ---------- */
.card {
  background: var(--surface); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: 14px 16px;
  animation: rise 180ms var(--ease) both;
}
.card-inchat { align-self: flex-start; max-width: 85%; min-width: 240px; margin-top: 4px; }

.statusline { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: var(--r-full); flex: none; }
.dot-working { background: var(--accent); position: relative; }
.dot-working::after {
  content: ""; position: absolute; inset: -1px; border-radius: var(--r-full);
  border: 1.5px solid var(--accent); animation: ring 1.6s var(--ease) infinite;
}
.dot-done { background: var(--success); }
.dot-warn { background: var(--warning); }
.dot-neutral { background: var(--text-3); }

.section-h { padding: 20px 16px 8px; font-size: 13px; font-weight: 500; color: var(--text-2); }
.rows { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.row { display: flex; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border);
       align-items: flex-start; }
.row:last-child { border-bottom: none; }
.row .grow { flex: 1; min-width: 0; }
.row-title { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.row-title .t-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row-time { font-size: 13px; color: var(--text-3); flex: none; }
.row-sub { font-size: 13px; line-height: 18px; color: var(--text-2); margin-top: 2px;
           display: flex; align-items: center; gap: 6px; }
.row-summary { font-size: 15px; line-height: 22px; color: var(--text-2); margin-top: 2px;
               display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.row-promise { font-size: 13px; line-height: 18px; color: var(--text); margin-top: 4px; }
.dir { color: var(--text-2); margin-top: 2px; }
.dir-out { color: var(--accent); }
.dir-spam { color: var(--text-3); }

/* Calls "story" intro — the day in Callie's own voice */
.storyintro { padding: 16px 16px 4px; font-size: 15px; line-height: 22px; color: var(--text-2); }
.storyintro b { color: var(--text); font-weight: 600; }

.pinned {
  margin: 12px 16px 0; height: 44px; background: var(--sunken); border-radius: var(--r-s);
  display: flex; align-items: center; gap: 8px; padding: 0 6px 0 12px;
  font-size: 13px; color: var(--text-2);
  position: sticky; top: 8px; z-index: 5;
}
.pinned b { color: var(--text); font-weight: 500; }

.spamgroup { margin: 8px 16px; }
.spamgroup summary {
  height: 44px; background: var(--sunken); border-radius: var(--r-s);
  display: flex; align-items: center; gap: 8px; padding: 0 12px;
  font-size: 13px; color: var(--text-3); cursor: pointer; list-style: none;
}
.spamgroup summary::-webkit-details-marker { display: none; }
.spamgroup summary .chev { margin-left: auto; transition: transform 180ms var(--ease); }
.spamgroup[open] summary .chev { transform: rotate(180deg); }
.spamrow { display: flex; justify-content: space-between; padding: 12px;
           font-size: 13px; color: var(--text-3); border-bottom: 1px solid var(--border); }
.spamrow:last-child { border-bottom: none; }

.empty { text-align: center; color: var(--text-2); max-width: 300px;
         margin: 22vh auto 0; font-size: 15px; line-height: 22px; }
.empty b { display: block; color: var(--text); font-weight: 600; margin-bottom: 4px; }

/* ---------- You screen ---------- */
.youhead { display: flex; align-items: center; gap: 14px; padding: 24px 16px 8px; }
.youhead .uavatar { width: 48px; height: 48px; font-size: 17px; }
.memrow { padding: 14px 16px; border-bottom: 1px solid var(--border);
          display: flex; gap: 12px; align-items: flex-start; }
.memrow:last-child { border-bottom: none; }
.setrow { min-height: 52px; padding: 14px 16px; border-bottom: 1px solid var(--border);
          display: flex; align-items: center; gap: 12px; }
.setrow:last-child { border-bottom: none; }
.setrow .grow { flex: 1; }
.setrow .val { color: var(--text-2); display: flex; align-items: center; gap: 6px; }

.toggle { width: 51px; height: 31px; border-radius: var(--r-full);
          background: var(--accent); position: relative; flex: none; }
.toggle::after { content: ""; position: absolute; top: 2px; left: 22px;
                 width: 27px; height: 27px; border-radius: var(--r-full);
                 background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.toggle.off { background: var(--border); }
.toggle.off::after { left: 2px; }

/* ---------- Audio player ---------- */
.player { height: 56px; background: var(--sunken); border-radius: var(--r-card);
          display: flex; align-items: center; gap: 12px; padding: 8px 12px; }
.play { width: 40px; height: 40px; border-radius: var(--r-full); background: var(--accent);
        color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.play svg { width: 18px; height: 18px; fill: currentColor; stroke: none; margin-left: 2px; }
.track { flex: 1; height: 3px; background: var(--border); border-radius: 2px; position: relative; }
.track::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0;
                 width: 35%; background: var(--accent); border-radius: 2px; }
.ptime { font-size: 13px; color: var(--text-2); flex: none; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; transform: translateX(-50%);
         bottom: calc(72px + env(safe-area-inset-bottom));
         background: var(--text); color: var(--bg); font-size: 15px;
         padding: 12px 16px; border-radius: var(--r-card);
         box-shadow: var(--shadow-float); display: flex; gap: 16px; align-items: center;
         animation: rise 180ms var(--ease) both; z-index: 50; }
.toast .undo { color: var(--accent); font-weight: 500; }

/* ---------- Onboarding ---------- */
.onb { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column;
       align-items: center; justify-content: center; padding: 32px 16px; }
.onb-col { width: 100%; max-width: 320px; display: flex; flex-direction: column;
           align-items: center; text-align: center; }
.field { width: 100%; }
.field label { display: block; text-align: left; font-size: 13px; font-weight: 500;
               color: var(--text-2); margin-bottom: 6px; }
.input { width: 100%; height: 48px; border: 1px solid var(--border); border-radius: var(--r-input);
         background: var(--surface); padding: 0 14px; font: inherit; font-size: 17px;
         color: var(--text); outline: none; transition: border-color 120ms var(--ease); }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--focus); }
.input::placeholder { color: var(--text-3); }

/* ---------- Landing ---------- */
.land { max-width: 880px; margin: 0 auto; padding: 0 16px; }
.land-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.wordmark { display: flex; align-items: center; gap: 8px; font-weight: 600;
            font-size: 17px; letter-spacing: -.01em; }
.hero { min-height: 84vh; display: flex; flex-direction: column; align-items: center;
        justify-content: center; text-align: center; }
.hero h1 { font-size: clamp(38px, 6vw, 58px); line-height: 1.08; font-weight: 650; letter-spacing: -.025em; }
.hero h1 .sub { display: block; color: var(--text-2); font-weight: 600; }
.block { padding: 48px 0; display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .block { padding: 88px 0 0; } }
.steps { max-width: 560px; width: 100%; display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 16px; align-items: baseline; font-size: 17px; line-height: 26px; }
.step .n { color: var(--accent); font-weight: 600; font-size: 24px; flex: none; width: 28px; }
.faq { width: 100%; max-width: 560px; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { padding: 16px 0; font-size: 15px; font-weight: 500; cursor: pointer;
               display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { color: var(--text-3); transition: transform 180ms var(--ease); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq p { padding: 0 0 16px; color: var(--text-2); }
.footer { padding: 64px 0 40px; display: flex; flex-direction: column;
          align-items: center; gap: 12px; text-align: center; }
.footer-links { display: flex; gap: 20px; color: var(--text-3); font-size: 13px; margin-top: 24px; }

/* ---------- First-meeting choreography (chat.html) ---------- */
.slot { display: grid; }
.slot > * { grid-column: 1; grid-row: 1; justify-self: start; }
.slot .typing { opacity: 0; animation: tshow .8s var(--td, .4s) both; }
@keyframes tshow {
  0% { opacity: 0; } 12%, 88% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
.enter { opacity: 0; animation: rise 180ms var(--ease) var(--md, 0s) both; }

.minipulse { width: 6px; height: 6px; border-radius: var(--r-full); background: var(--accent);
             animation: blink 1.6s var(--ease) infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.offline { height: 32px; background: var(--sunken); color: var(--text-2);
           font-size: 13px; display: flex; align-items: center; justify-content: center; }

/* ---------- Prototype storyboard helpers ---------- */
.proto-note { max-width: 430px; margin: 24px auto 8px; padding: 0 16px;
              font-size: 11px; font-weight: 500; letter-spacing: .06em;
              text-transform: uppercase; color: var(--text-3); }
.frame { max-width: 430px; margin: 0 auto; background: var(--bg);
         border: 1px solid var(--border); border-radius: var(--r-sheet); overflow: hidden; }

/* ---------- Color-variant compare page & launcher ---------- */
.compare { max-width: 1240px; margin: 0 auto; padding: 40px 20px; }
.vgrid { display: grid; gap: 24px; grid-template-columns: 1fr;
         margin-top: 24px; }
@media (min-width: 900px) { .vgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .vgrid { grid-template-columns: repeat(3, 1fr); } }
.vcard { border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
         background: var(--surface); }
.vcard .vhead { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.vcard .vname { font-weight: 600; }
.vcard .vmood { font-size: 13px; color: var(--text-3); }
.swatches { display: flex; gap: 6px; }
.swatch { width: 20px; height: 20px; border-radius: 6px; border: 1px solid rgba(0,0,0,.06); }
.vbody { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.launcher { max-width: 720px; margin: 0 auto; padding: 48px 20px; }
.lgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.lcard { border: 1px solid var(--border); border-radius: 14px; padding: 18px 16px;
         background: var(--surface); transition: transform 100ms var(--ease); }
.lcard:hover { transform: translateY(-2px); }
.lcard .t-label { display: block; }
.lcard .t-caption { color: var(--text-3); margin-top: 2px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; animation-delay: 0s !important; }
}

/* ---------- Production-readiness sprint: live call timeline & journal ---------- */
.tl { list-style: none; padding: 0; margin: 6px 0; display: flex; flex-direction: column; gap: 6px; }
.tl li { display: flex; align-items: baseline; gap: 8px; font-size: 14px; color: var(--text); }
.tl .ts { flex-shrink: 0; color: var(--text-2, #8a857c); font-variant-numeric: tabular-nums; font-size: 12px; min-width: 62px; }
