:root {
  --ivory: var(--io-canvas); --surface: var(--io-surface); --ink: var(--io-text);
  --muted: var(--io-text-secondary); --faint: var(--io-text-muted); --hair: var(--io-border);
  --turq: var(--io-turq-500); --turq-text: var(--io-turq-700); --gold: var(--io-gold-500);
  --coral: var(--io-coral-700); --wash: var(--io-message-user);
  --gold-grad: var(--io-gradient-gold); --shadow-card: var(--io-shadow-card);
  --shadow-pill: var(--io-shadow-control); --shadow-gold: var(--io-shadow-gold);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--io-stage-canvas, #E2DED6);
  color: var(--ink);
  font-family: var(--io-font);
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 16px;
}

.phone {
  width: 390px;
  height: min(844px, calc(100dvh - 52px));
  min-height: 620px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border-radius: 38px;
  box-shadow: 0 8px 40px rgba(35, 38, 37, 0.22);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.phone.screen-leaving {
  opacity: 0;
  transform: translateY(-8px);
}

.phone.screen-entering {
  opacity: 0;
  transform: translateY(8px);
}

.head {
  min-height: 76px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 20px 12px;
}

.wordmark {
  width: 100px;
  height: 42.8px;
  flex: 0 0 auto;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.beta-chip {
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--wash);
  color: var(--turq-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.auth-note {
  margin: 2px 0 6px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.auth-note a,
.disclaimer a {
  color: var(--turq-text);
}

/* Memória entre conversas (entrega 5) */
.facts-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.facts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts li {
  display: grid;
  gap: 2px;
  padding: 8px 0;
  border-top: 1px solid var(--hair);
}

.fact-reason {
  color: var(--muted);
  font-size: 13px;
}

.fact-delete {
  justify-self: start;
  font-size: 13px;
}

.facts-empty {
  margin: 0;
  color: var(--muted);
}

.history-list { padding: 8px 0; }
.history-items { list-style: none; margin: 0; padding: 0; }
.history-item {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 15px 4px;
  border: 0;
  border-bottom: 1px solid var(--hair);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.history-item:hover { background: var(--wash); }
.history-preview { font-weight: 600; overflow-wrap: anywhere; }
.history-date { color: var(--muted); font-size: 12.5px; }
.history-older { align-self: center; margin-bottom: 16px; }

.resume-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
  margin: 4px 0 12px;
  padding: 12px 14px;
  border: 1px solid var(--hair);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

/* Visitantes (T6) */
.guest-note {
  max-width: 320px;
  text-align: center;
}

.link-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--turq-text);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

/* Página /privacidade */
.legal {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 22px 48px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.legal h1 {
  margin: 12px 0 6px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.legal h2 {
  margin: 26px 0 8px;
  font-size: 18px;
}

.legal p,
.legal li {
  margin: 0 0 10px;
}

.legal ul {
  padding-left: 1.2em;
}

.legal .meta {
  color: var(--muted);
  font-size: 13px;
}

.legal a {
  color: var(--turq-text);
}

.account-pill {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--hair);
  border-radius: 20px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.account-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--hair);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.account-icon:hover {
  border-color: var(--turq);
  background: var(--surface);
}

.scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
  padding: 4px 20px 18px;
}

.scroll::-webkit-scrollbar {
  width: 0;
}

.conversation {
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px 22px;
}

.hero-image {
  width: 238px;
  height: 238px;
}

.main-home {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 20px 18px;
  animation: fade-in 0.32s ease both;
}

.main-mascot {
  width: 168px;
  height: 168px;
}

.character-art {
  display: block;
  background-image:
    url("/assets/character/iollo-neutral-hero-v3.png"),
    url("/assets/character/iollo-neutral-hero-v3.png"),
    url("/assets/character/iollo-neutral-hero-v3.png"),
    url("/assets/character/iollo-neutral-hero-v3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.main-greeting {
  width: 100%;
  min-height: var(--measured-text-height, auto);
  color: var(--ink);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  text-align: center;
  text-wrap: pretty;
}

.main-question {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.main-notice {
  padding: 7px 12px;
  border-radius: 16px;
  background: #fbf4e7;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.usage-chip,
.answer-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.usage-chip {
  padding: 7px 11px;
  border: 1px solid var(--hair);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
}

.answer-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 3px 12px;
}

.assistant-copy a {
  color: var(--turq-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.evaluation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 3px 12px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.evaluation-icon {
  appearance: none;
  -webkit-appearance: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  cursor: pointer;
  transition: transform 140ms ease, opacity 140ms ease;
}

.evaluation-icon:hover {
  transform: translateY(-2px) scale(1.04);
}

.evaluation-icon:focus-visible {
  outline: 2px solid var(--turq);
  outline-offset: 2px;
}

.evaluation-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.evaluation-detail {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 11px 13px;
  border: 1px solid var(--hair);
  border-radius: 18px;
  background: var(--surface);
}

.evaluation-detail button {
  padding: 6px 11px;
  border: 1px solid var(--hair);
  border-radius: 14px;
  background: var(--ivory);
  cursor: pointer;
}

.evaluation-reason {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.evaluation select {
  max-width: 180px;
  padding: 6px;
  border: 1px solid var(--hair);
  border-radius: 10px;
  background: var(--ivory);
}

.main-composer {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--hair);
  border-radius: 27px;
  background: var(--surface);
}

.main-composer:focus-within {
  border-color: var(--turq);
  box-shadow: 0 0 0 1px var(--turq);
}

.main-composer input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.main-composer input::placeholder {
  color: var(--faint);
}

.hero-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.9px;
  text-align: center;
}

.hero-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.hero-actions {
  width: 100%;
  display: flex;
  gap: 9px;
}

.returning-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-choice {
  width: 100%;
}

.ask {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.pill {
  flex: 1;
  min-height: 54px;
  padding: 11px 14px;
  border: 0;
  border-radius: 27px;
  background: var(--surface);
  box-shadow: var(--shadow-pill);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
}

.pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-pill), 0 0 0 2px var(--turq);
}

.turn {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 24px;
  animation: fade-in 0.3s ease both;
}

.turn.continuation {
  margin-top: 14px;
}

/* Resposta entregue mas cortada pelo limite de tamanho do motor. */
.turn.incomplete .assistant-copy {
  border-left: 2px dashed var(--muted);
  padding-left: 10px;
}

.avatar,
.avatar-space {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin-top: 2px;
}

.avatar {
  background-image:
    url("/assets/character/iollo-neutral-avatar-v3.png"),
    url("/assets/character/iollo-neutral-avatar-v3.png"),
    url("/assets/character/iollo-neutral-avatar-v3.png"),
    url("/assets/character/iollo-neutral-avatar-v3.png");
}

.assistant-copy {
  flex: 1;
  min-width: 0;
  min-height: var(--measured-text-height, auto);
  color: var(--ink);
  font-size: 17.5px;
  line-height: 1.5;
  letter-spacing: -0.1px;
  text-wrap: pretty;
}

.assistant-copy strong {
  font-weight: 700;
}

.assistant-copy p {
  margin: 0;
}

.assistant-copy p + p,
.assistant-copy p + ul,
.assistant-copy p + ol,
.assistant-copy ul + p,
.assistant-copy ol + p {
  margin-top: 0.6em;
}

.assistant-copy ul,
.assistant-copy ol {
  margin: 0;
  padding-left: 1.3em;
}

.assistant-copy li + li {
  margin-top: 0.25em;
}

.assistant-copy code {
  padding: 0 4px;
  border-radius: 6px;
  background: var(--wash);
  font-size: 0.92em;
}

/* Resposta ainda a chegar: cursor no fim do texto. */
.turn.streaming .assistant-copy > :last-child::after {
  content: "▍";
  margin-left: 1px;
  color: var(--turq-text);
  animation: cursor-blink 1s steps(2, start) infinite;
}

@keyframes cursor-blink {
  to { visibility: hidden; }
}

/* Passos de uma tarefa («o que fiz», spec 14) */
.assistant-copy .task-steps { margin: 10px 0 0; padding: 8px 12px; border: 1px solid var(--io-border, #e6e2da); border-radius: 12px; font-size: 14px; line-height: 1.5; }
.assistant-copy .task-steps > summary { cursor: pointer; font-weight: 600; }
.assistant-copy .task-steps ol { margin: 6px 0 0; padding-left: 20px; }
.assistant-copy .task-step { margin: 2px 0; }
.assistant-copy .task-step-name { font-weight: 600; }
.assistant-copy .task-step-status { opacity: 0.7; font-size: 12px; }
.assistant-copy .task-step-status::before { content: "· "; }
.assistant-copy .task-step-running .task-step-status { font-style: italic; }
.assistant-copy .task-step-failed .task-step-status, .assistant-copy .task-step-refused .task-step-status, .assistant-copy .task-step-declined .task-step-status { color: #9a3b1e; opacity: 1; }
.assistant-copy .task-step-awaiting_confirmation .task-step-status { color: #7a5a00; opacity: 1; }
.assistant-copy .task-steps a { color: inherit; text-decoration: underline; }

.assistant-copy .sources {
  margin-top: 0.7em;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.assistant-copy .sources a {
  color: var(--turq-text);
}

/* Pergunta seguinte, no fundo da conversa. Desativada durante o streaming. */
.followup-composer {
  margin: 18px 0 6px;
}

.main-composer.busy {
  opacity: 0.55;
}

.main-composer input:disabled,
.main-composer button:disabled {
  cursor: not-allowed;
}

.me {
  align-self: flex-end;
  max-width: 82%;
  min-width: 0;
  overflow-wrap: anywhere;
  min-height: var(--measured-text-height, auto);
  margin-top: 24px;
  padding: 11px 16px;
  border-radius: 20px;
  background: var(--wash);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
  text-wrap: pretty;
  animation: fade-in 0.3s ease both;
}

.article-question { display: block; }
.article-question-source {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}
.article-question-title { font-weight: 500; }
.article-question-meta { color: var(--muted); font-size: 12px; }
.article-question-link { color: var(--turq-text); font-size: 12px; text-decoration: underline; }
.article-question-source:focus-visible { outline: 2px solid var(--turq-text); outline-offset: 4px; }

.controls {
  margin: 14px 0 2px 37px;
  animation: fade-in 0.3s ease both;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suggestion {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--hair);
  border-radius: 22px;
  background: transparent;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: background 0.14s, border-color 0.14s;
}

.suggestion:hover {
  border-color: var(--turq);
  background: var(--surface);
}

.suggestion.dark {
  width: 100%;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  font-weight: 600;
}

.suggestion.wide {
  width: 100%;
  text-align: center;
}

.suggestion.quiet {
  border-color: transparent;
  color: var(--muted);
  text-align: center;
}

.composer {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--hair);
  border-radius: 24px;
  background: var(--surface);
}

.composer:focus-within {
  border-color: var(--turq);
  box-shadow: 0 0 0 1px var(--turq);
}

.composer input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.composer input::placeholder {
  color: var(--faint);
}

.send,
.show-password {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: var(--shadow-gold);
}

.show-password {
  min-height: 36px;
  padding: 0 8px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.controls-revealing {
  overflow: hidden;
  overflow-anchor: none;
}

@media (prefers-reduced-motion: no-preference) {
  .auth-form-entering > * {
    animation: form-field-in 450ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
  }

  .auth-form-entering > :first-child { animation-delay: 60ms; }
  .auth-form-entering > :nth-child(2) { animation-delay: 130ms; }
}

@keyframes form-field-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.auth-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 16px 11px;
  border: 1px solid var(--hair);
  border-radius: 20px;
  background: var(--surface);
  transition: border-color 0.14s, box-shadow 0.14s;
}

.auth-field:focus-within {
  border-color: var(--turq);
  box-shadow: 0 0 0 1px var(--turq);
}

.auth-field > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.auth-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.auth-field input::placeholder {
  color: var(--faint);
}

.password-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-show {
  min-height: 24px;
  padding: 0;
}

.auth-submit,
.auth-secondary,
.auth-tertiary {
  width: 100%;
  min-height: 54px;
  padding: 11px 18px;
  border-radius: 27px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.auth-submit {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.auth-secondary {
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--ink);
}

.auth-tertiary {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.auth-submit:hover,
.auth-secondary:hover,
.auth-tertiary:hover {
  transform: translateY(-1px);
}

.composer input:focus-visible,
.auth-field input:focus-visible,
.main-composer input:focus-visible {
  outline: 0;
}

.error-note,
.info-note {
  margin-top: 11px;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.45;
}

.error-note {
  background: #f8e7e2;
  color: #873822;
}

.info-note {
  background: #fbf4e7;
  color: #4a4842;
}

.foot {
  flex: 0 0 auto;
  padding: 6px 20px max(18px, env(safe-area-inset-bottom));
}

.disclaimer {
  margin: 10px auto 0;
  color: var(--faint);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.loading {
  min-height: 100%;
  display: grid;
  place-items: center;
}

.loading-dots {
  display: flex;
  gap: 6px;
}

.loading-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--turq);
  animation: pulse 0.9s ease-in-out infinite alternate;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

button:disabled,
input:disabled {
  cursor: wait;
  opacity: 0.58;
}

button:focus-visible,
input:focus-visible {
  outline: 2.5px solid var(--turq-text);
  outline-offset: 3px;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  from { opacity: 0.3; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 430px) {
  body {
    background: var(--ivory);
  }

  .stage {
    padding: 0;
  }

  .phone {
    width: 100vw;
    height: 100dvh;
    min-height: 540px;
    border-radius: 0;
    box-shadow: none;
  }

  .head {
    padding-top: max(17px, env(safe-area-inset-top));
  }
}

@media (max-height: 700px) {
  .hero {
    gap: 15px;
  }

  .hero-image {
    width: 190px;
    height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Páginas de informação, com a mesma tipografia e ritmo da app. */
.legal-nav{display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px;margin-bottom:32px;font-size:14px}
.legal-summary{background:var(--bg, #F7F3EC);border:1px solid #e5ddd1;border-radius:24px;padding:24px;margin:28px 0}
.legal-summary>strong{font-size:20px;color:#292923}
.legal-summary p:last-child{margin-bottom:0}
@media(max-width:480px){.legal-summary{padding:20px}.legal-nav{font-size:13px;gap:12px}}

/* Endereço Iollo no Perfil (D19b): linha com «?» e bolha explicativa */
.email-row { position: relative; flex-wrap: wrap; }
.email-row .email-row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; border: 0; background: transparent; padding: 0; text-align: left; color: inherit; font: inherit; cursor: pointer; }
.email-row .email-row-main:disabled { cursor: default; }
.email-row .email-address { word-break: break-all; }
.email-row .info-button { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--io-border, #e6e2da); background: var(--io-surface, #fff); color: var(--io-text-secondary, #666); font-weight: 700; font-size: 15px; line-height: 1; cursor: pointer; }
.email-row .info-bubble { display: none; flex-basis: 100%; margin: 8px 0 0 44px; padding: 10px 12px; border-radius: 12px; background: var(--io-surface, #fff); border: 1px solid var(--io-border, #e6e2da); box-shadow: var(--io-shadow-card, 0 6px 20px rgba(0,0,0,.08)); font-size: 13px; line-height: 1.45; }
.email-row .info-bubble p { margin: 0 0 8px; }
.email-row .info-bubble-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.email-row.open .info-bubble, .email-row .info-button:focus-visible + .info-bubble { display: block; }
@media (hover: hover) { .email-row .info-button:hover + .info-bubble { display: block; } }
.email-row .email-row-status { flex-basis: 100%; margin: 4px 0 0 44px; font-size: 12px; color: var(--io-text-secondary, #666); min-height: 0; }
.email-row .email-row-status:empty { display: none; }
