/*
 * Product mocks. Stand-ins for real screenshots, built from a handful of pieces
 * so a card can be re-arranged without new CSS. Shared by the homepage and the
 * product page; the build inlines it the same way it inlines base.css.
 */
.mk-chart, .mk-table, .mk-rows, .mk-tiles, .mk-doc, .mk-grid, .mk-swarm, .mk-cal { width: 100%; }
.mk-list { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.mk-list li { display: grid; gap: 2px; }
.mk-list b { font-size: 14.5px; font-weight: 600; color: var(--black); }
.mk-list span { font-size: 13.5px; line-height: 1.5; color: var(--slate); }

.mk-chart { display: block; width: 100%; height: auto; }
.mk-chart .grid { stroke: #E5E7EB; stroke-width: 1; stroke-dasharray: 3 3; }
.mk-chart .median { stroke: var(--blue); stroke-width: 2; stroke-dasharray: 5 5; }
.mk-chart .tick { fill: #6B7280; font-size: 17px; }
.mk-chart .name {
  fill: #19191B; font-size: 20px; font-weight: 600;
  stroke: #fff; stroke-width: 5px; paint-order: stroke fill;
}

.mk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mk-src {
  border: 1px solid var(--divider); border-radius: 9px; padding: 9px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 7px; background: var(--light-gray);
}
.mk-src img { height: 18px; width: auto; max-width: 58px; object-fit: contain; }
.mk-src b { font-size: 10px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--green); }

.mk-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.mk-table th {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--quicksilver);
  text-align: right; padding: 0 0 8px; border-bottom: 1px solid var(--divider);
}
.mk-table th:first-child { text-align: left; }
.mk-table td {
  padding: 10px 0; border-top: 1px solid var(--frost); text-align: right;
  color: var(--slate); font-variant-numeric: tabular-nums;
}
.mk-table td:first-child { text-align: left; color: var(--black); font-weight: 500; }

.mk-rows { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.mk-row { display: flex; align-items: center; gap: 14px; font-size: 13.5px; }
.mk-row span { width: 96px; color: var(--black); font-weight: 500; }
.mk-row i { flex: 1; height: 8px; border-radius: 999px; background: var(--frost); overflow: hidden; }
.mk-row i b { display: block; height: 100%; border-radius: 999px; background: var(--blue); }
.mk-row em { font-style: normal; color: var(--slate); font-variant-numeric: tabular-nums; }

.mk-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mk-chips span {
  font-size: 12.5px; font-weight: 500; padding: 6px 12px; border-radius: 999px;
  background: var(--light-blue); color: var(--deep-blue);
}

.mk-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width: 100%; }
.mk-tile {
  border-radius: 10px; display: grid; align-content: end; padding: 10px;
  background: linear-gradient(150deg, var(--deep-blue), var(--blue) 62%, #2576a1);
}
.mk-tile span { font-size: 11.5px; font-weight: 600; color: #fff; }

.mk-doc {
  width: 100%; border: 1px solid var(--divider); border-radius: 12px; padding: 18px;
  display: flex; flex-direction: column; gap: 9px; background: var(--light-gray);
}
.mk-doc b { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.mk-doc i { display: block; height: 7px; border-radius: 999px; background: var(--frost); }

.mk-chat { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.mk-msg { font-size: 13.5px; line-height: 1.5; padding: 11px 15px; border-radius: 14px; max-width: 84%; }
.mk-msg--you { align-self: flex-end; background: var(--light-blue); color: var(--black); border-bottom-right-radius: 4px; }
.mk-msg--bot { align-self: flex-start; background: var(--light-gray-2); color: var(--charcoal); border-bottom-left-radius: 4px; }

.mk-cal { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; width: 100%; }
.mk-cal__day {
  border: 1px solid var(--divider); border-radius: 10px; padding: 10px;
  display: flex; flex-direction: column; gap: 6px; min-height: 92px; background: var(--white);
}
.mk-cal__day b { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--quicksilver); }
.mk-cal__day i { display: block; height: 14px; border-radius: 4px; }
.mk-cal__day i.c1 { background: var(--light-blue); }
.mk-cal__day i.c2 { background: var(--stroke-blue); }
.mk-cal__day i.c3 { background: var(--divider-blue); }

.mk-page {
  width: 100%; border: 1px solid var(--divider); border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; gap: 10px; background: var(--white);
}
.mk-page__bar { display: block; height: 8px; width: 42%; border-radius: 999px; background: var(--light-blue); }
.mk-page b { font-size: 15px; font-weight: 600; color: var(--black); }
.mk-page i { display: block; height: 7px; border-radius: 999px; background: var(--frost); }
.mk-page span {
  align-self: flex-start; margin-top: 4px; font-size: 12px; font-weight: 600; color: #fff;
  background: var(--blue); padding: 7px 14px; border-radius: 999px;
}

.mk-brand { display: flex; align-items: center; gap: 16px; width: 100%; flex-wrap: wrap; }
.mk-sw { display: flex; gap: 8px; }
.mk-sw i { display: block; width: 30px; height: 30px; border-radius: 7px; }
.mk-type b { display: block; font-size: 15px; font-weight: 600; }
.mk-type span { font-size: 22px; color: var(--slate); }

.mk-swarm { display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px; width: 100%; }
.mk-swarm i { display: block; aspect-ratio: 1; border-radius: 3px; background: var(--light-blue); }
.mk-swarm i:nth-child(4n) { background: var(--stroke-blue); }
.mk-swarm i:nth-child(7n) { background: var(--blue); }
