/* ─────────────────────────────────────────────────────────────────
   features.css — capability tabs + AI tool mockups
   Drawn (not screenshotted) UIs of Claude / ChatGPT / Gemini.
   ───────────────────────────────────────────────────────────────── */

.tm-features {
  position: relative;
  padding: 64px 0 80px;
  background: var(--ground);
  border-top: 0;
}

.tm-features-head { display: none; }

/* ── Tabs ─────────────────────────────────────────────────────── */

.tm-features-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 1100px) { .tm-features-tabs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .tm-features-tabs { grid-template-columns: repeat(2, 1fr); } }

.tm-features-tab {
  appearance: none;
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 12px 14px 14px;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    background var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    box-shadow var(--base) var(--ease);
  font-family: inherit;
}
.tm-features-tab:hover { border-color: var(--rule-strong); }
.tm-features-tab.is-active {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 10px 24px -16px color-mix(in oklab, var(--accent) 40%, transparent);
}
.tm-features-tab-tool { display: none; }
.tm-features-tab-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex: 0 0 auto;
}
.tm-features-tab.is-active .tm-features-tab-icon {
  background: var(--accent);
  color: #fff;
}
.tm-features-tab-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.tm-features-tab-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.4;
}

/* ── Stage ────────────────────────────────────────────────────── */

.tm-features-stage {
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 22%, color-mix(in oklab, var(--accent) 16%, transparent) 0%, transparent 55%),
    radial-gradient(circle at 82% 78%, color-mix(in oklab, var(--brand-mint) 22%, transparent) 0%, transparent 55%),
    color-mix(in oklab, var(--accent) 5%, var(--surface));
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: tm-stage-in 320ms var(--ease);
  height: 640px;
  min-height: 640px;
}
.tm-features-stage--web { height: 640px; min-height: 640px; align-items: flex-start; padding-top: 40px; }
.tm-features-stage--mobile {
  height: 640px;
  min-height: 640px;
  padding: 40px 24px 0;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .tm-features-stage { padding: 24px 16px; height: auto; min-height: 400px; }
  .tm-features-stage--web,
  .tm-features-stage--mobile { height: auto; min-height: 400px; }
}
.tm-features-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 15, 20, 0.09) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.55;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 25%, black 75%, transparent 100%);
}
.tm-features-stage::after { display: none; }
.tm-features-stage > * { position: relative; z-index: 1; }

.tm-features-stage--web > * { width: 100%; max-width: 1100px; }

@keyframes tm-stage-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Browser frame ───────────────────────────────────────────── */

.mk-browser {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.55), 0 6px 20px -10px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.06);
}
.mk-browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: #f4f3ee;
  border-bottom: 1px solid #e5e5dc;
}
.mk-browser.mk-theme-gpt .mk-browser-bar { background: #2a2a2a; border-bottom-color: #1c1c1c; }
.mk-browser.mk-theme-gem .mk-browser-bar { background: #1f1f1f; border-bottom-color: #161616; }

.mk-browser-dots { display: inline-flex; gap: 6px; flex: 0 0 auto; }
.mk-dot { width: 11px; height: 11px; border-radius: 999px; display: inline-block; }
.mk-dot-r { background: #ff5f57; }
.mk-dot-y { background: #febc2e; }
.mk-dot-g { background: #28c840; }

.mk-browser-url {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 380px;
  margin-inline: auto;
  height: 26px;
  padding: 0 14px;
  background: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--muted);
  border: 1px solid rgba(0,0,0,0.05);
}
.mk-browser.mk-theme-gpt .mk-browser-url { background: #3a3a3a; color: #d0d0d0; border-color: #4a4a4a; }
.mk-browser.mk-theme-gem .mk-browser-url { background: #2d2d2d; color: #d0d0d0; border-color: #3d3d3d; }
.mk-lock { font-size: 9px; }

.mk-browser-spacer { width: 56px; flex: 0 0 auto; }
.mk-browser-body { background: #fff; }
.mk-browser.mk-theme-gpt .mk-browser-body { background: #212121; }
.mk-browser.mk-theme-gem .mk-browser-body { background: #1b1c1d; }

/* ── Phone frame ─────────────────────────────────────────────── */

.mk-phone {
  width: 340px;
  border-radius: 36px;
  background: #0a0a0a;
  padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), inset 0 0 0 1.5px #2a2a2a;
  position: relative;
}
.mk-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #0a0a0a;
  border-radius: 28px 28px 0 0;
  position: relative;
  white-space: nowrap;
}
.mk-phone-status-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #fff;
}
.mk-phone-status-right i { font-size: 12px; }
.mk-phone-notch {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 999px;
}
.mk-phone-body {
  background: #fff;
  height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mk-phone-home {
  height: 8px;
  margin-top: 2px;
  display: flex;
  justify-content: center;
}
.mk-phone-home::after {
  content: "";
  width: 110px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  margin-top: 2px;
}

/* ── MCP indicator ──────────────────────────────────────────── */
.mk-mcp {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(11,15,20,0.08);
  background: rgba(11,15,20,0.025);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mk-mcp--dark {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.mk-mcp-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 8px;
}
.mk-mcp--dark .mk-mcp-head { color: rgba(255,255,255,0.6); }
.mk-mcp-head strong { font-weight: 600; color: #1f2937; }
.mk-mcp--dark .mk-mcp-head strong { color: #e5e7eb; }
.mk-mcp-caret { margin-left: auto; font-size: 10px; opacity: 0.6; }
.mk-mcp-tools {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mk-mcp-tool {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: #6b7280;
  font-family: var(--font-mono);
}
.mk-mcp--dark .mk-mcp-tool { color: rgba(255,255,255,0.65); }
.mk-mcp-tool-name { flex: 1; }
.mk-mcp-tool-result {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(11,15,20,0.06);
  color: #4b5563;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mk-mcp--dark .mk-mcp-tool-result {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────────────────────────
   Generic message bubbles
   ───────────────────────────────────────────────────────────────── */

.mk-msg-user, .mk-msg-bot {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.mk-msg-user { justify-content: flex-end; }
.mk-msg-bot { justify-content: flex-start; }
.mk-msg-avatar {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mk-msg-body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: #1f2937;
}
.mk-msg-user .mk-msg-body {
  background: #f1f1ec;
  padding: 10px 14px;
  border-radius: 16px;
  max-width: 70%;
}

/* ─────────────────────────────────────────────────────────────────
   Claude (1) — Sales strategy
   ───────────────────────────────────────────────────────────────── */

.mk-claude {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 540px;
  background: #faf9f5;
  font-family: var(--font-body);
}
@media (max-width: 768px) { .mk-claude { grid-template-columns: 1fr; } .mk-claude-side { display: none; } }

.mk-claude-side {
  background: #f4f2eb;
  border-right: 1px solid #e8e4d8;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mk-claude-side-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #2c1f15;
}
.mk-claude-side-section { display: flex; flex-direction: column; gap: 8px; }
.mk-claude-side-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c7a6a;
}
.mk-claude-mcp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ece5d3;
  font-size: 12px;
  font-weight: 500;
  color: #2c1f15;
}
.mk-claude-mcp-dot {
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}
.mk-claude-side-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mk-claude-side-list li {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  color: #5c4a3c;
  cursor: default;
}
.mk-claude-side-list li.is-active {
  background: #2c1f15;
  color: #faf9f5;
  font-weight: 500;
}

.mk-claude-main {
  display: flex;
  flex-direction: column;
  padding: 28px 36px 18px;
  overflow: hidden;
  position: relative;
}
.mk-claude-main .mk-msg-avatar { background: #D97757; }
.mk-claude-main .mk-msg-bot .mk-msg-body { max-width: 100%; }
.mk-claude-main .mk-msg-bot .mk-msg-body p { margin: 0 0 12px; color: #2c1f15; }

.mk-claude-card {
  background: #fff;
  border: 1px solid #ece5d3;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.mk-claude-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.mk-claude-card-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #8c7a6a;
  font-weight: 600;
}
.mk-claude-card-title {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #2c1f15;
  letter-spacing: -0.01em;
}
.mk-claude-card-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: #16a34a;
  padding: 2px 8px;
  background: #e8f7ed;
  border-radius: 999px;
}
.mk-claude-card-body {
  font-size: 12px;
  line-height: 1.45;
  color: #5c4a3c;
  margin: 4px 0 8px;
}
.mk-claude-bar {
  height: 4px;
  background: #f1ece0;
  border-radius: 999px;
  overflow: hidden;
}
.mk-claude-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #D97757, #c66445);
  border-radius: 999px;
}
.mk-claude-foot {
  font-size: 12.5px !important;
  color: #5c4a3c !important;
  padding-top: 8px;
  border-top: 1px solid #ece5d3;
  margin-top: 8px !important;
}
.mk-claude-foot strong { color: #2c1f15; }

.mk-claude-input {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #ece5d3;
  border-radius: 14px;
  position: sticky;
  bottom: 0;
}
.mk-claude-input input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  color: #2c1f15;
}
.mk-claude-input input::placeholder { color: #b0a294; }
.mk-claude-input button {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #D97757;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────────────────
   ChatGPT — Costs
   ───────────────────────────────────────────────────────────────── */

.mk-gpt {
  background: #212121;
  color: #ececec;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  height: 540px;
}
.mk-gpt-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid #2f2f2f;
}
.mk-gpt-title {
  font-weight: 600;
  font-size: 14px;
}
.mk-gpt-model {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #888;
  padding: 4px 10px;
  background: #2f2f2f;
  border-radius: 999px;
}
.mk-gpt-body {
  flex: 1;
  padding: 28px 80px;
  overflow: hidden;
}
@media (max-width: 1024px) { .mk-gpt-body { padding: 24px; } }

.mk-msg-user.is-gpt .mk-msg-body {
  background: #2f2f2f;
  color: #ececec;
}
.mk-msg-bot.is-gpt .mk-msg-avatar { background: #10A37F; }
.mk-msg-bot.is-gpt .mk-msg-body { max-width: 100%; color: #ececec; }
.mk-msg-bot.is-gpt .mk-msg-body p { margin: 0 0 12px; color: #ececec; }

.mk-gpt-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 12px;
  font-size: 12.5px;
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}
.mk-gpt-table th, .mk-gpt-table td {
  padding: 10px 14px;
  text-align: left;
}
.mk-gpt-table th {
  background: #2f2f2f;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  border-bottom: 1px solid #1d1d1d;
}
.mk-gpt-table td {
  border-bottom: 1px solid #1d1d1d;
  color: #ececec;
}
.mk-gpt-table tr:last-child td { border-bottom: 0; }
.mk-gpt-bullet {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
}
.mk-gpt-positive {
  color: #34d399;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.mk-gpt-foot {
  font-size: 12.5px;
  color: #b8b8b8;
  margin-top: 12px !important;
}
.mk-gpt-foot strong { color: #34d399; }

.mk-gpt-input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 16px;
  padding: 12px 16px;
  background: #2f2f2f;
  border-radius: 24px;
  border: 1px solid #3a3a3a;
}
.mk-gpt-input-ico {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: #444;
  color: #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.mk-gpt-input input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  font-family: inherit;
  font-size: 13px;
  color: #ececec;
}
.mk-gpt-input input::placeholder { color: #888; }
.mk-gpt-input button {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: #fff;
  color: #212121;
  border: 0;
  font-size: 14px;
  cursor: pointer;
}

/* ─────────────────────────────────────────────────────────────────
   Gemini — Retention + Forecast
   ───────────────────────────────────────────────────────────────── */

.mk-gem {
  background: #1b1c1d;
  color: #e8eaed;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.mk-gem-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-bottom: 1px solid #2a2b2d;
}
.mk-gem-title {
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(90deg, #4285F4, #9B72CB, #D96570);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mk-gem-chip {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #9aa0a6;
  padding: 4px 10px;
  background: #2a2b2d;
  border-radius: 999px;
}
.mk-gem-body {
  padding: 28px 60px;
}
@media (max-width: 1024px) { .mk-gem-body { padding: 24px; } }

.mk-msg-user.is-gem .mk-msg-body {
  background: #303134;
  color: #e8eaed;
}
.mk-msg-bot.is-gem .mk-msg-avatar { background: #fff; }
.mk-msg-bot.is-gem .mk-msg-body { max-width: 100%; color: #e8eaed; }
.mk-msg-bot.is-gem .mk-msg-body p { margin: 0 0 12px; color: #e8eaed; }
.mk-msg-bot.is-gem .mk-msg-body strong { color: #fff; }

.mk-gem-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 12px;
}
.mk-gem-row {
  background: #25272a;
  border: 1px solid #2d2f33;
  border-radius: 10px;
  padding: 10px 14px;
}
.mk-gem-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.mk-gem-row-name {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}
.mk-gem-row-acct {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #9aa0a6;
}
.mk-gem-row-mid {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.mk-gem-meter {
  flex: 1;
  height: 5px;
  background: #2d2f33;
  border-radius: 999px;
  overflow: hidden;
}
.mk-gem-meter-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #4285F4 0%, #9B72CB 70%, #D96570 100%);
}
.mk-gem-meter-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #fff;
  width: 28px;
  text-align: right;
  font-weight: 600;
}
.mk-gem-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.mk-gem-signal {
  font-size: 10.5px;
  padding: 3px 8px;
  background: rgba(155, 114, 203, 0.18);
  color: #c5b0e0;
  border-radius: 999px;
  font-family: var(--font-body);
  white-space: nowrap;
}
.mk-gem-foot {
  margin-top: 12px !important;
  font-size: 12.5px;
  color: #b8b9bb;
}

/* Forecast — visualization */
.mk-forecast {
  background: #25272a;
  border: 1px solid #2d2f33;
  border-radius: 10px;
  padding: 14px;
  margin: 8px 0 12px;
}
.mk-forecast-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.mk-forecast-title {
  font-weight: 600;
  font-size: 12.5px;
  color: #fff;
}
.mk-forecast-up {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #34d399;
}
.mk-forecast-chart {
  width: 100%;
  height: auto;
  display: block;
}
.mk-forecast-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.mk-forecast-card {
  background: #1d1e21;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mk-forecast-card-icon {
  font-size: 16px;
  color: #4285F4;
  margin-bottom: 2px;
}
.mk-forecast-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9aa0a6;
}
.mk-forecast-card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.015em;
}

/* ─────────────────────────────────────────────────────────────────
   Mobile mockups
   ───────────────────────────────────────────────────────────────── */

.mk-mobile-gpt {
  flex: 1;
  background: #212121;
  color: #ececec;
  display: flex;
  flex-direction: column;
}
.mk-mobile-gpt-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #2f2f2f;
  font-weight: 600;
  font-size: 13px;
}
.mk-mobile-gpt-sub {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  font-family: var(--font-mono);
}
.mk-mobile-gpt-body { padding: 16px; flex: 1; overflow: auto; }

.mk-msg-user.is-gpt-mob, .mk-msg-bot.is-gpt-mob { margin-bottom: 12px; }
.mk-msg-user.is-gpt-mob .mk-msg-body {
  background: #2f2f2f;
  color: #ececec;
  font-size: 13px;
}
.mk-msg-bot.is-gpt-mob .mk-msg-body { color: #ececec; max-width: 100%; }
.mk-msg-bot.is-gpt-mob .mk-msg-body p { margin: 0 0 10px; color: #ececec; font-size: 13px; }

.mk-stock-hero {
  text-align: center;
  padding: 16px 12px;
  background: linear-gradient(135deg, #10A37F 0%, #34d399 100%);
  border-radius: 12px;
  margin-bottom: 14px;
}
.mk-stock-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: #fff;
}
.mk-stock-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}
.mk-stock-row {
  display: grid;
  grid-template-columns: 90px 1fr 60px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 12px;
  color: #ececec;
}
.mk-stock-row + .mk-stock-row { border-top: 1px solid #2f2f2f; }
.mk-stock-row > :last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
}
.mk-stock-bar {
  height: 5px;
  background: #2f2f2f;
  border-radius: 999px;
  overflow: hidden;
  display: block;
}
.mk-stock-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #10A37F, #34d399);
  border-radius: 999px;
}

/* Claude mobile */
.mk-mobile-claude {
  flex: 1;
  background: #faf9f5;
  display: flex;
  flex-direction: column;
  color: #2c1f15;
}
.mk-mobile-claude-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #ece5d3;
  font-weight: 700;
  font-size: 13px;
}
.mk-mobile-claude-body { padding: 16px; flex: 1; overflow: auto; }

.mk-msg-user.is-claude-mob, .mk-msg-bot.is-claude-mob { margin-bottom: 12px; }
.mk-msg-user.is-claude-mob .mk-msg-body {
  background: #f1ece0;
  color: #2c1f15;
  font-size: 13px;
}
.mk-msg-bot.is-claude-mob .mk-msg-body { color: #2c1f15; max-width: 100%; }
.mk-claude-mb-lead { font-size: 13px; color: #2c1f15; margin: 0 0 10px; }

.mk-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.mk-product-row + .mk-product-row { border-top: 1px solid #ece5d3; }
.mk-product-rank {
  width: 24px; height: 24px;
  background: #2c1f15;
  color: #faf9f5;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mk-product-info {
  flex: 1;
  min-width: 0;
}
.mk-product-name {
  font-weight: 600;
  font-size: 13px;
  color: #2c1f15;
}
.mk-product-sku {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #8c7a6a;
}
.mk-product-margin {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #D97757;
  font-variant-numeric: tabular-nums;
}
