/* ================================================================
   QUALZY — Moderator Intelligence Page Styles  v5
   ================================================================ */


/* ── Hero ──────────────────────────────────────────────────────── */

.mi-hero {
  position: relative;
  background: var(--wh);
  overflow: hidden;
  padding-top: 64px;
}

.mi-hglow1 {
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(250,88,2,.08) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.mi-hglow2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(250,88,2,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mi-hsvg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mi-hero-inn {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 60px 48px 88px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mi-back {
  font-size: 13px;
  font-weight: 500;
  color: var(--mu);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 28px;
  align-self: flex-start;
  transition: color var(--t-base);
}
.mi-back:hover { color: var(--o); }

.mi-hero-inn h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--dk);
  margin: 20px 0 24px;
  letter-spacing: -0.02em;
}
.mi-hero-inn h1 em {
  font-style: italic;
  color: var(--o);
}

.mi-hsub {
  font-size: 19px;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
  max-width: 600px;
  font-weight: 300;
}

/* Hero section nav */
.mi-hnav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mi-hnav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 7px 12px 7px 0;
  border-radius: 6px;
  transition: color var(--t-base);
}
.mi-hnav-item:hover { color: var(--o); }

.mi-hnav-n {
  font-size: 11px;
  font-weight: 700;
  color: var(--o);
  opacity: 0.6;
  letter-spacing: 0.05em;
  min-width: 20px;
}


/* ── Hero demo panel ───────────────────────────────────────────── */

.mi-hdemo {
  flex: 0 0 440px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 0 var(--rule), 0 20px 60px rgba(0,0,0,.1);
  border: 1px solid var(--rule);
  overflow: hidden;
}

/* Chrome bar */
.mi-hdemo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--rule);
  background: #fafaf8;
}

.mi-hdemo-dots {
  display: flex;
  gap: 5px;
}
.mi-hdemo-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rule);
}
.mi-hdemo-dots span:first-child  { background: #fc695a; }
.mi-hdemo-dots span:nth-child(2) { background: #fdbc40; }
.mi-hdemo-dots span:nth-child(3) { background: #34c749; }

.mi-hdemo-title {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--mu);
  flex: 1;
  text-align: center;
}

.mi-hdemo-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
}

.mi-hdemo-livedot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: mi-pulse-live 2s ease infinite;
}

@keyframes mi-pulse-live {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Participant message (always visible) */
.mi-hdemo-participant {
  display: flex;
  gap: 12px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--rule);
}

.mi-hdemo-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--op);
  color: var(--o);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mi-hdemo-pmain { flex: 1; min-width: 0; }

.mi-hdemo-pname {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dk);
  margin-bottom: 5px;
}

.mi-hdemo-ploc {
  font-weight: 400;
  color: var(--mu);
  margin-left: 5px;
}

.mi-hdemo-pmsg {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.55;
  font-style: italic;
}

/* States area — fixed height, all states absolutely positioned inside */
.mi-hdemo-states {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.mi-hdemo-gen,
.mi-hdemo-sug,
.mi-hdemo-sent {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 18px 18px 16px;
}

/* Active state via JS classes */
.mi-hdemo--gen  .mi-hdemo-gen  { opacity: 1; pointer-events: auto; }
.mi-hdemo--sug  .mi-hdemo-sug  { opacity: 1; pointer-events: auto; }
.mi-hdemo--sent .mi-hdemo-sent { opacity: 1; pointer-events: auto; }

/* Generating state */
.mi-hdemo-gen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.mi-hdemo-gen-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--o);
}
.mi-hdemo-gen-lbl svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  animation: mi-spin 2s linear infinite;
}
@keyframes mi-spin { to { transform: rotate(360deg); } }

.mi-hdemo-gen-track {
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.mi-hdemo-gen-fill {
  height: 100%;
  width: 0%;
  background: var(--o);
  border-radius: 2px;
  transition: width 1.8s cubic-bezier(.4,0,.2,1);
}

/* Suggestion state */
.mi-hdemo-sug {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mi-hdemo-sug-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mi-hdemo-sug-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--o);
  background: var(--op);
  padding: 3px 9px;
  border-radius: 12px;
}

.mi-hdemo-sug-lang {
  font-size: 10.5px;
  color: var(--mu);
  font-weight: 500;
}

.mi-hdemo-sug-native {
  font-size: 13px;
  color: var(--dk);
  line-height: 1.55;
  font-style: italic;
}

.mi-hdemo-sug-trans {
  background: #fafaf8;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 10px 12px;
}

.mi-hdemo-trans-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.mi-hdemo-trans-txt {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
}

.mi-hdemo-sug-btns {
  display: flex;
  gap: 7px;
  margin-top: 2px;
}

.mi-hdemo-approve,
.mi-hdemo-editbtn,
.mi-hdemo-skipbtn {
  font-size: 11.5px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.mi-hdemo-approve {
  background: var(--o);
  color: #fff;
}

.mi-hdemo-editbtn {
  background: var(--op);
  color: var(--o);
  border: 1px solid rgba(250,88,2,.2);
}

.mi-hdemo-skipbtn {
  background: transparent;
  color: var(--mu);
  border: 1px solid var(--rule);
}

/* Approving state — approve button animates green */
.mi-hdemo--approving .mi-hdemo-approve {
  background: #22c55e;
  transform: scale(0.95);
}

/* Sent state */
.mi-hdemo-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mi-hdemo-sent svg {
  width: 44px; height: 44px;
}

.mi-hdemo-sent span {
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
}


/* ── Guiding Principle (dark) ──────────────────────────────────── */

.mi-principle {
  background: var(--dk);
}

.mi-principle-inn {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.mi-principle-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.mi-principle-sub {
  color: rgba(255,255,255,.5);
  margin-top: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.mi-principle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mi-pc {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s;
}
.mi-pc:hover { border-color: rgba(250,88,2,.25); }

.mi-pc-icon {
  width: 40px; height: 40px;
  background: rgba(250,88,2,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o);
}
.mi-pc-icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mi-pc h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.mi-pc p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}


/* ── AI Reply Assistance (light) ───────────────────────────────── */

.mi-reply-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* Real screenshot layout */
.mi-reply-screens {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}

.mi-rscreen {
  background: transparent;
}

.mi-rscreen-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 32px 80px rgba(232, 97, 44, 0.18),
    0 8px 32px rgba(0, 0, 0, 0.10);
}

/* Feature callouts (3-col) */
.mi-reply-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.mi-rcallout {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--wh);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.mi-rcallout-icon {
  width: 36px; height: 36px;
  background: var(--op);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o);
}
.mi-rcallout-icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mi-rcallout strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--dk);
  line-height: 1.35;
}

.mi-rcallout span {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* Never auto-posts note */
.mi-reply-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: var(--op);
  border: 1px solid rgba(250,88,2,.15);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.5;
}
.mi-reply-note svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--o);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}


/* ── Language Bridging (dark) ──────────────────────────────────── */

.mi-lang {
  background: var(--d2);
}

.mi-lang-inn {
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mi-lang-img {
  /* no background needed — let the glow show against the dark section */
}

.mi-lang-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55);
}

.mi-lang-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mi-lang-bullets li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.mi-lang-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--o);
  opacity: 0.7;
}

.mi-lang-facts {
  display: flex;
  gap: 0;
  margin-top: 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
}

.mi-lfact {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.mi-lfact:last-child { border-right: none; }

.mi-lfact-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--o);
  line-height: 1;
}
.mi-lfact-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
  margin-top: 6px;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Language Bridging animated demo ───────────────────────────── */
/*
   Styled to closely match the real Qualzy platform UI:
   - Dark navy blue (#1c3f6e) for the suggestion panel
   - White for the reply field and sent states
   - Orange/amber avatar for the posted reply (matching the platform)
   - "Enter in English. Will be translated into Spanish" field UI
   - "Refresh Translation Edit Delete" action links
*/

.mi-lb-demo {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 56px rgba(0,0,0,.32);
  overflow: hidden;
  align-self: start;
}

/* Participant post — always visible */
.mi-lb-post {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #e8ecf0;
  background: #fff;
}

.mi-lb-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Participant: orange tint (matches platform) */
.mi-lb-av--p   { background: #fde8dc; color: #c85420; }
/* Moderator/Jake P.: amber orange (matches platform avatar in screenshot) */
.mi-lb-av--mod { background: #f59e0b; color: #fff; }

.mi-lb-post-body { flex: 1; min-width: 0; }

.mi-lb-post-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.mi-lb-post-name { font-size: 13px; font-weight: 700; color: #1e293b; }
.mi-lb-post-loc  { font-size: 11px; color: #94a3b8; margin-left: 4px; }
.mi-lb-post-time { font-size: 11px; color: #94a3b8; margin-left: 8px; }

.mi-lb-post-text {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.5;
  font-style: italic;
}

/* States container */
.mi-lb-states {
  position: relative;
  height: 248px;
  overflow: hidden;
}

/* All states: absolutely stacked, crossfade via parent class */
.mi-lb-gen,
.mi-lb-sug,
.mi-lb-field,
.mi-lb-sent {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  display: flex;
  flex-direction: column;
}

.mi-lb--gen              .mi-lb-gen   { opacity: 1; pointer-events: auto; }
.mi-lb--sug              .mi-lb-sug   { opacity: 1; pointer-events: auto; }
.mi-lb--clicked          .mi-lb-sug   { opacity: 1; pointer-events: auto; }
.mi-lb--field            .mi-lb-field { opacity: 1; pointer-events: auto; }
.mi-lb--posting          .mi-lb-field { opacity: 1; pointer-events: auto; }
.mi-lb--sent             .mi-lb-sent  { opacity: 1; pointer-events: auto; }

/* ── Generating state ──────────────────────────────────────────── */
.mi-lb-gen {
  padding: 16px;
  justify-content: center;
  gap: 14px;
  background: #fff;
}

.mi-lb-gen-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1c3f6e;
}
.mi-lb-gen-lbl svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  animation: mi-spin 2s linear infinite;
}

.mi-lb-gen-track {
  height: 3px;
  background: #dde4ee;
  border-radius: 2px;
  overflow: hidden;
}
.mi-lb-gen-fill {
  height: 100%;
  width: 0%;
  background: #1c3f6e;
  border-radius: 2px;
}

/* ── Suggestion state: dark navy panel matching the real UI ─────── */
.mi-lb-sug {
  background: #1c3f6e;
  padding: 16px;
  gap: 10px;
}

.mi-lb-sug-eyebrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mi-lb-sug-eyebrow svg {
  width: 11px; height: 11px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
}

/* Spanish probe text — white, prominently legible */
.mi-lb-sug-sp {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

/* Dividing rule between Spanish and English */
.mi-lb-sug-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,.14);
  margin: 0;
}

/* English translation — italic, muted */
.mi-lb-sug-en {
  font-size: 12px;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  font-style: italic;
}

/* Footer: icon row + Use button */
.mi-lb-sug-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.mi-lb-sug-icons {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,.35);
}
.mi-lb-sug-icons svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* "Use this reply" button on dark panel */
.mi-lb-use {
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  padding: 5px 14px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
/* Click flash: turns green */
.mi-lb--clicked .mi-lb-use {
  background: #22c55e;
  border-color: #22c55e;
  transform: scale(0.95);
}

/* ── Reply field state: white panel matching the real UI ─────────── */
.mi-lb-field {
  background: #fff;
}

/* Shows the probe (in muted text, above the comment field) */
.mi-lb-field-probe {
  padding: 10px 14px;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
  border-bottom: 1px solid #e8ecf0;
  background: #f5f7fa;
}

.mi-lb-field-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 14px;
}

/* The actual comment input box */
.mi-lb-field-input {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #cdd5df;
  border-radius: 5px;
  padding: 8px 10px;
  background: #fff;
}

.mi-lb-field-txt {
  flex: 1;
  font-size: 12.5px;
  color: #374151;
  line-height: 1.5;
}

/* Blinking cursor */
.mi-lb-cursor {
  display: inline-block;
  width: 1.5px;
  height: 13px;
  background: #1c3f6e;
  vertical-align: middle;
  margin-left: 1px;
  opacity: 0;
}
.mi-lb--field .mi-lb-cursor,
.mi-lb--posting .mi-lb-cursor {
  opacity: 1;
  animation: mi-lb-blink 0.9s step-end infinite;
}
@keyframes mi-lb-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.mi-lb-field-smiley {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: #94a3b8;
  stroke-width: 1.6;
  stroke-linecap: round;
}

/* "Enter in English. Will be translated into Spanish" */
.mi-lb-field-hint {
  font-size: 10.5px;
  color: #94a3b8;
  font-style: italic;
}

/* X + lock + Post row */
.mi-lb-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.mi-lb-field-btns-l {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #94a3b8;
}
.mi-lb-field-x {
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  color: #94a3b8;
}
.mi-lb-field-btns-l svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The Post button — dark navy matching the suggestion panel */
.mi-lb-post-btn {
  font-size: 12px;
  font-weight: 700;
  background: #1c3f6e;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 5px 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
/* Post click flash: turns green */
.mi-lb--posting .mi-lb-post-btn {
  background: #22c55e;
  transform: scale(0.95);
}

/* "A response is optional" */
.mi-lb-field-optional {
  font-size: 11px;
  color: #94a3b8;
  padding: 7px 14px 9px;
  border-top: 1px solid #e8ecf0;
  text-align: center;
}
.mi-lb-field-optional span {
  color: #22a84e;
  font-weight: 500;
}

/* ── Sent state: reply in thread, matching the real UI ─────────── */
.mi-lb-sent {
  padding: 16px;
  justify-content: center;
  gap: 0;
  background: #fff;
}

.mi-lb-reply-item { display: flex; gap: 10px; }

.mi-lb-reply-body { flex: 1; min-width: 0; }

.mi-lb-reply-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 5px;
}
.mi-lb-reply-name { font-size: 13px; font-weight: 700; color: #1e293b; }
.mi-lb-reply-time { font-size: 11px; color: #94a3b8; }

/* Spanish reply text */
.mi-lb-reply-text {
  font-size: 12.5px;
  color: #374151;
  line-height: 1.6;
}

/* "Refresh Translation Edit Delete" links — blue, matching the screenshot */
.mi-lb-reply-acts {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.mi-lb-reply-acts span {
  font-size: 12px;
  color: #3a7bd5;
  font-weight: 400;
  cursor: default;
}


/* ── Qualzy Protect (warm) ─────────────────────────────────────── */

.mi-protect-wrap {
  max-width: 820px;
}

.mi-protect-txt .sbod {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

/* Detection signals list */
.mi-protect-signals {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.mi-psig {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mi-psig-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--o);
  flex-shrink: 0;
  margin-top: 6px;
}

.mi-psig strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dk);
  margin-bottom: 3px;
}

.mi-psig span {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* Honest limitation callout */
.mi-protect-caveat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(250,88,2,.06);
  border: 1px solid rgba(250,88,2,.15);
  border-radius: 10px;
}

.mi-protect-caveat svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--o);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.mi-protect-caveat p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}



/* ── Responsive ────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .mi-lang-inn {
    gap: 56px;
  }
}

@media (max-width: 960px) {
  .mi-hero-inn {
    padding: 48px 48px 72px;
  }
  .mi-principle-cards {
    grid-template-columns: 1fr;
  }
  .mi-rscreen-pair {
    grid-template-columns: 1fr;
  }
  .mi-reply-callouts {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mi-lang-inn {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 48px;
  }
}

@media (max-width: 768px) {
  .mi-hero-inn {
    padding: 40px 24px 60px;
  }
  .mi-principle-inn {
    padding: 64px 24px;
  }
  .mi-lang-inn {
    padding: 64px 24px;
  }
  .mi-hsub {
    font-size: 15px;
  }
}
