/* ===================================================================
 * flocks-artwork.css — phone-artwork row used in artwork frontpage
 *
 * Used by:
 *   - /admin/flocks/artworkfp.php  (the artwork design lab)
 *   - /index2.php                  (homepage hero variant — testing)
 *
 * Self-contained: all .phone, .phones-row, .splash, .task-*, .cta-*
 * styles live here. Page-specific layout (body / wrapper around the
 * row) stays inline in each consumer page.
 *
 * Depends on /style/flocks.css for the brand tokens:
 *   --primary, --secondary, --cream, --ink, --muted
 * plus the Material Symbols Rounded + Bricolage + Inter web fonts.
 * =================================================================== */

:root {
  --green: #0E7B58;
  --rust: #B23A2C;
}

/* ============ AVATARS ============ */
.av {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; color: #FFF;
  flex-shrink: 0;
}
.av.bg-blue { background: var(--primary); }
.av.bg-amber { background: var(--secondary); }
.av.bg-green { background: var(--green); }
.av.bg-rust { background: var(--rust); }
.av.bg-slate { background: #4A5568; }
.av.bg-sky { background: #4A7AC8; }
.av.bg-mauve { background: #7A4A8C; }
.av.bg-olive { background: #6B7A3D; }
.av.photo { background: var(--cream); overflow: hidden; }
.av.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ============ PHONE FRAME ============ */
.phone {
  width: 380px;
  background: #1A1A1A;
  border-radius: 48px;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
  margin: 0 auto;
  position: relative;
}
.phone-screen {
  background: var(--cream);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 9 / 19.2;
  min-height: 720px;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #1A1A1A;
  border-radius: 999px;
  z-index: 10;
}
.phone-home {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  width: 130px; height: 5px;
  background: rgba(0,0,0,0.85);
  border-radius: 3px;
  z-index: 10;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.phone-status .icons {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.phone-status .material-symbols-rounded {
  font-size: 16px;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 20;
}

/* ============ APP HEADER ============ */
.app-header {
  padding: 12px 22px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.app-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.app-actions { display: inline-flex; gap: 4px; }
.app-action-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.app-action-btn.primary {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}
.app-action-btn .material-symbols-rounded { font-size: 22px; }

/* tab strip */
.app-tabstrip {
  display: flex;
  gap: 6px;
  padding: 6px 22px 12px;
  overflow-x: auto;
}
.app-tabstrip-item {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.04);
}
.app-tabstrip-item.active {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
}

/* ============ CONVERSATION LIST ============ */
.conv-list {
  flex: 1;
  background: #FFFFFF;
  overflow-y: hidden;
}
.conv {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.conv:last-child { border-bottom: none; }
.conv-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 14px;
}
.conv-av.group {
  border-radius: 14px;
  background: var(--cream);
  color: var(--secondary);
}
.conv-av.group .material-symbols-rounded {
  font-size: 24px;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.conv-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.conv-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.conv-prev {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}
.conv-prev .you {
  color: var(--secondary);
  font-weight: 600;
}
.conv.unread .conv-prev {
  color: var(--ink);
  font-weight: 500;
}
.conv-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  padding-left: 6px;
}
.conv-time {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.conv.unread .conv-time {
  color: var(--primary);
  font-weight: 700;
}
.conv-unread {
  background: var(--primary);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.conv-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* ============ BOTTOM TABS ============ */
.phone-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0 24px;
  flex-shrink: 0;
}
.phone-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.phone-tab .material-symbols-rounded {
  font-size: 24px;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.phone-tab.active { color: var(--primary); }
.phone-tab.active .material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

/* ============ ROW OF PHONES (horizontal scroll) ============ */
.phones-row {
  width: 100%;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 32px 24px;
  justify-content: safe center;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
  cursor: grab;
}
.phones-row.dragging {
  cursor: grabbing;
  user-select: none;
  scroll-snap-type: none;
}
.phones-row.dragging a,
.phones-row.dragging button { pointer-events: none; }
.phones-row > * {
  flex: 0 0 auto;
  scroll-snap-align: center;
}
.phones-row::-webkit-scrollbar { height: 8px; }
.phones-row::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
}
.phones-row::-webkit-scrollbar-track { background: transparent; }

/* ============ MINI PHONE (desktop default) ============ */
.phone.mini {
  width: 320px;
  padding: 12px;
  border-radius: 42px;
}
.phone.mini .phone-screen {
  border-radius: 30px;
  min-height: 600px;
}
.phone.mini .phone-notch { width: 78px; height: 22px; }
.phone.mini .phone-home { width: 110px; }
.phone.mini .app-title { font-size: 24px; }
.phone.mini .conv { padding: 10px 18px; }
.phone.mini .conv-av { width: 38px; height: 38px; font-size: 12px; }
.phone.mini .conv-name { font-size: 13px; }
.phone.mini .conv-prev { font-size: 11px; }
.phone.mini .conv-time { font-size: 10px; }
.phone.mini .app-search { margin: 0 18px 8px; padding: 8px 12px; font-size: 12px; }
.phone.mini .phone-status { padding: 12px 22px 4px; font-size: 12px; }
.phone.mini .app-action-btn { width: 32px; height: 32px; }
.phone.mini .app-action-btn .material-symbols-rounded { font-size: 18px; }
.phone.mini .phone-tab { font-size: 9px; }
.phone.mini .phone-tab .material-symbols-rounded { font-size: 21px; }
.phone.mini .app-tabstrip { padding: 4px 18px 10px; }
.phone.mini .app-tabstrip-item { padding: 5px 12px; font-size: 11px; }

/* ============ CHAT DETAIL ============ */
.chat-head-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 10px;
}
.chat-back {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.04);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.chat-back .material-symbols-rounded { font-size: 18px; }
.chat-head-info { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; }
.chat-head-info .av { width: 32px; height: 32px; border-radius: 50%; font-size: 12px; }
.chat-head-info .meta { min-width: 0; }
.chat-head-info .name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.chat-head-info .status {
  font-family: 'Inter', sans-serif;
  font-size: 10px; color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.chat-head-info .status::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}
.chat-head-tools { display: inline-flex; gap: 2px; }

.chat-body {
  flex: 1;
  background: #FFFFFF;
  padding: 14px 16px;
  display: flex; flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.chat-day {
  align-self: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 999px;
}
.bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.4;
}
.bubble.them {
  background: var(--cream);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble.me {
  background: var(--primary);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble-name {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  color: var(--secondary);
  margin: 4px 0 -4px 4px;
}
.bubble.assistant {
  background: rgba(172,124,0,0.10);
  border: 1px solid rgba(172,124,0,0.25);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble.assistant + .bubble.assistant { margin-top: -4px; }
.ai-result {
  align-self: flex-start;
  max-width: 78%;
  background: #FFFFFF;
  border: 1px solid rgba(172,124,0,0.25);
  border-radius: 12px;
  padding: 10px;
  display: flex; gap: 10px; align-items: center;
  margin-top: -2px;
}
.ai-result-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-result-icon .material-symbols-rounded { font-size: 18px; }
.ai-result-body { min-width: 0; }
.ai-result-body strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  display: block;
}
.ai-result-body span {
  font-family: 'Inter', sans-serif;
  font-size: 10px; color: var(--muted);
}
.ai-result.clickable {
  cursor: pointer;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,47,167,0.10);
}
.ai-result.clickable .ai-result-icon {
  background: var(--primary);
  color: #FFFFFF;
}
.ai-result-chev {
  margin-left: auto;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}
.ai-result-chev .material-symbols-rounded { font-size: 18px; }
.chat-hint {
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--muted);
  padding-left: 4px;
  margin-top: -4px;
}
.chat-hint .material-symbols-rounded {
  font-size: 12px;
  vertical-align: middle;
  margin-right: 2px;
}

.chat-input {
  padding: 8px 14px 12px;
  background: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 6px;
}
.chat-input-pill {
  flex: 1;
  background: var(--cream);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
}
.chat-input-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.chat-input-send .material-symbols-rounded { font-size: 18px; }

/* ============ FLOCKS CTA ============ */
.phone-screen.cta {
  background: var(--cream);
  color: var(--ink);
}
.cta-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 28px;
  text-align: center;
}
.cta-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.cta-logo .dot { color: var(--secondary); }
.cta-tagline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 18ch;
}
.cta-tagline strong {
  font-weight: 700;
  color: var(--primary);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,47,167,0.25);
}
.cta-button .material-symbols-rounded { font-size: 20px; }
.cta-foot {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 26px;
  text-align: center;
}

/* ============ TASK BOARD ============ */
.task-board {
  flex: 1;
  background: #FFFFFF;
  padding: 6px 14px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.task-board-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 4px 8px;
}
.task-col {
  background: #F2F5FB;
  border-radius: 14px;
  padding: 8px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}
.task-col-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px;
}
.task-col-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}
.task-col-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.task-col-count {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.task-col-edit {
  margin-left: auto;
  color: var(--muted);
  display: inline-flex;
}
.task-col-edit .material-symbols-rounded { font-size: 16px; }

.task-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px 11px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.task-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.task-card-deadline {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(178,58,44,0.08);
  color: var(--rust);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  align-self: flex-start;
}
.task-card-deadline .material-symbols-rounded { font-size: 12px; }
.task-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 2px;
}
.task-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(172,124,0,0.12);
  color: var(--secondary);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.task-card-tag .material-symbols-rounded { font-size: 11px; }
.task-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
  flex-shrink: 0;
}
.task-card.from-ai {
  border-left: 3px solid var(--secondary);
}

.task-pager {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 4px;
}
.task-pager span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
}
.task-pager span.active {
  width: 18px;
  border-radius: 999px;
  background: var(--primary);
}

.task-fab {
  position: absolute;
  right: 14px;
  bottom: 80px;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--primary);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,47,167,0.30);
  z-index: 5;
}
.task-fab .material-symbols-rounded { font-size: 24px; }

/* ============ SPLASH ============ */
.phone-screen.splash {
  background: var(--primary);
  color: #FFFFFF;
}
.phone-screen.splash .phone-status,
.phone-screen.splash .phone-status .material-symbols-rounded {
  color: #FFFFFF;
}
.splash-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px;
}
.splash-icon {
  width: 96px; height: 96px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}
.splash-icon .material-symbols-rounded {
  font-size: 64px;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}
.splash-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.05;
}
.splash-name .accent { color: var(--secondary); }
.splash-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.splash-foot {
  padding: 0 0 32px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.splash-foot strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
  text-transform: none;
  font-size: 12px;
  margin-left: 4px;
}

/* ============ MOBILE: smaller phones with peek (placed LAST so it
   wins over the default .phone.mini rules above) ============ */
@media (max-width: 720px) {
  .phones-row {
    gap: 16px;
    padding: 8px 16px 24px;
  }
  .phone.mini {
    width: 260px;
    padding: 10px;
    border-radius: 38px;
  }
  .phone.mini .phone-screen {
    border-radius: 28px;
    min-height: 520px;
  }
  .phone.mini .phone-notch { width: 64px; height: 18px; }
  .phone.mini .phone-home { width: 92px; height: 4px; }
  .phone.mini .phone-status { padding: 10px 18px 4px; font-size: 11px; }
  .phone.mini .app-header { padding: 10px 18px 12px; }
  .phone.mini .app-title { font-size: 20px; }
  .phone.mini .app-action-btn { width: 28px; height: 28px; }
  .phone.mini .app-action-btn .material-symbols-rounded { font-size: 16px; }
  .phone.mini .app-tabstrip { padding: 4px 14px 8px; gap: 4px; }
  .phone.mini .app-tabstrip-item { padding: 4px 10px; font-size: 10px; }
  .phone.mini .conv { padding: 8px 14px; gap: 10px; }
  .phone.mini .conv-av { width: 32px; height: 32px; font-size: 11px; }
  .phone.mini .conv-name { font-size: 12px; }
  .phone.mini .conv-prev { font-size: 10px; }
  .phone.mini .conv-time { font-size: 9px; }
  .phone.mini .phone-tabs { padding: 8px 0 18px; }
  .phone.mini .phone-tab { font-size: 8px; gap: 2px; }
  .phone.mini .phone-tab .material-symbols-rounded { font-size: 18px; }
  /* splash */
  .phone.mini .splash-body { gap: 16px; padding: 18px; }
  .phone.mini .splash-icon { width: 72px; height: 72px; border-radius: 22px; }
  .phone.mini .splash-icon .material-symbols-rounded { font-size: 48px; }
  .phone.mini .splash-name { font-size: 22px; }
  .phone.mini .splash-tagline { font-size: 10px; letter-spacing: 2px; }
  .phone.mini .splash-foot { padding: 0 0 22px; font-size: 9px; }
  .phone.mini .splash-foot strong { font-size: 11px; }
  /* chat */
  .phone.mini .chat-head-bar { padding: 4px 14px 8px; }
  .phone.mini .chat-back { width: 28px; height: 28px; }
  .phone.mini .chat-head-info .av { width: 28px; height: 28px; font-size: 11px; }
  .phone.mini .chat-head-info .name { font-size: 12px; }
  .phone.mini .chat-head-info .status { font-size: 9px; }
  .phone.mini .chat-body { padding: 10px 12px; gap: 8px; }
  .phone.mini .bubble { font-size: 11px; padding: 7px 10px; }
  .phone.mini .chat-day { font-size: 9px; padding: 3px 8px; }
  .phone.mini .ai-result { padding: 8px; gap: 8px; }
  .phone.mini .ai-result-icon { width: 26px; height: 26px; }
  .phone.mini .ai-result-icon .material-symbols-rounded { font-size: 16px; }
  .phone.mini .ai-result-body strong { font-size: 11px; }
  .phone.mini .ai-result-body span { font-size: 9px; }
  .phone.mini .chat-input { padding: 6px 10px 10px; }
  .phone.mini .chat-input-pill { font-size: 11px; padding: 6px 12px; }
  .phone.mini .chat-input-send { width: 28px; height: 28px; }
  .phone.mini .chat-input-send .material-symbols-rounded { font-size: 16px; }
  /* task board */
  .phone.mini .task-board { padding: 4px 10px 0; }
  .phone.mini .task-board-eyebrow { font-size: 10px; padding: 4px 4px 6px; }
  .phone.mini .task-col { padding: 6px 8px 10px; border-radius: 12px; gap: 5px; }
  .phone.mini .task-col-head { padding: 4px 4px 4px; gap: 5px; }
  .phone.mini .task-col-name { font-size: 12px; }
  .phone.mini .task-col-count { font-size: 11px; }
  .phone.mini .task-col-edit .material-symbols-rounded { font-size: 14px; }
  .phone.mini .task-card { padding: 8px 9px; gap: 5px; border-radius: 8px; }
  .phone.mini .task-card-title { font-size: 11px; }
  .phone.mini .task-card-deadline { font-size: 9px; padding: 2px 6px; }
  .phone.mini .task-card-deadline .material-symbols-rounded { font-size: 11px; }
  .phone.mini .task-card-tag { font-size: 8px; padding: 2px 6px; }
  .phone.mini .task-avatar { width: 18px; height: 18px; font-size: 9px; }
  .phone.mini .task-pager span.active { width: 14px; }
  .phone.mini .task-fab { width: 36px; height: 36px; right: 12px; bottom: 64px; border-radius: 12px; }
  .phone.mini .task-fab .material-symbols-rounded { font-size: 20px; }
  /* cta */
  .phone.mini .cta-body { gap: 20px; padding: 22px; }
  .phone.mini .cta-logo { font-size: 44px; }
  .phone.mini .cta-tagline { font-size: 17px; max-width: 16ch; }
  .phone.mini .cta-button { padding: 11px 22px; font-size: 13px; }
  .phone.mini .cta-button .material-symbols-rounded { font-size: 16px; }
  .phone.mini .cta-foot { font-size: 9px; padding: 0 0 20px; }
}
