/* ── product mock ────────────────────────────────────────────────
   Sits under "What you get", inside the same section, as in the
   original.

   Mono is reserved for the two machine-stamped values — the URL in
   the chrome and the briefing timestamp. Everything else in here is
   interface copy and is set in the body face.
   ─────────────────────────────────────────────────────────────── */

.shot {
  max-width: 960px;
  margin: 40px auto 0;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #171513, #121110);
  box-shadow: 0 60px 120px -50px rgba(0, 0, 0, .8);
  overflow: hidden;
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-2);
}

.shot-dots {
  display: inline-flex;
  gap: 6px;
}
.shot-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

/* mono — a machine value */
.shot-url {
  margin-left: 6px;
  font-family: var(--mono);
  font-size: var(--t-mono);
  color: var(--ink-2);
}

.shot-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 420px;
}

/* ── sidebar ────────────────────────────────────────────────── */

.shot-side {
  padding: 18px 16px;
  border-right: 1px solid var(--line-2);
}

.shot-co {
  font-size: var(--t-body-lg);
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: var(--s-2);
}

.shot-lbl {
  margin: 18px 0 6px;
  font-size: var(--t-mono-sm);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.shot-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--ink);
}

.shot-rows .is-active { background: var(--card-2); }

.shot-rows .val {
  font-size: 12.5px;
  color: var(--ink-2);
}

/* ── briefing ───────────────────────────────────────────────── */

.shot-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 26px;
}

.brief {
  width: 100%;
  max-width: 560px;
  padding: 18px 20px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: var(--card);
}

.brief-meta {
  display: flex;
  justify-content: space-between;
  gap: var(--s-2);
  margin-bottom: 10px;
  font-size: var(--t-mono);
  color: var(--ink-2);
}

/* mono — a machine value */
.brief-meta time {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.brief-title {
  font-size: var(--t-body-lg);
  font-weight: 600;
  line-height: var(--lh-snug);
  margin-bottom: 8px;
}

.brief-body {
  font-size: 14.5px;
  line-height: var(--lh-body);
  color: var(--ink);
}

.brief-log {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 5px var(--s-2);
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.5;
}
.brief-log dt {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink);
}
.brief-log dd { color: var(--ink-2); }

.brief-reply {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  width: 100%;
  max-width: 560px;
  margin-top: 14px;
  padding: 6px 6px 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--ink-2);
}
.brief-reply span { flex: 1; }
.brief-reply i {
  padding: 6px 10px;
  border-radius: var(--r-pill);
  background: var(--card-2);
  color: var(--ink-2);
  font-size: 11.5px;
  font-style: normal;
}

@media (max-width: 820px) {
  .shot-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .shot-side {
    border-right: 0;
    border-bottom: 1px solid var(--line-2);
  }
  .shot-main { padding: 18px; }
  .brief-log { grid-template-columns: 1fr; gap: 0; }
  .brief-log dd { margin-bottom: 6px; }
}
