/* ready.css - Ready (deliverables) screen. Scoped to .ready.
   Tokens and shared components come from tokens/components/screens.css. */

/* ---------- Deliverables ---------- */
.ready .deliverables .section-h { justify-content: space-between; }
.ready .dl-tiles-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 860px) { .ready .dl-tiles-3 { grid-template-columns: 1fr; } }

.ready .dl-tile {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 18px; box-shadow: var(--sh-1);
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), transform var(--dur-1) var(--ease);
}
.ready .dl-tile:hover { border-color: var(--navy); box-shadow: var(--sh-2); }
.ready .dl-tile.expired { opacity: .72; box-shadow: none; }
.ready .dl-tile.expired:hover { border-color: var(--line-strong); box-shadow: none; }

.ready .dt-preview { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: var(--surface-2); }
.ready .dt-preview img { display: block; width: 100%; height: auto; max-height: 200px; object-fit: cover; object-position: top; }

.ready .dt-row { display: flex; gap: 13px; align-items: flex-start; }
.ready .dt-ic { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--brand-tint); color: var(--navy); display: flex; align-items: center; justify-content: center; flex: none; }
.ready .dt-ic .ic { width: 24px; height: 24px; }
.ready .dl-tile.expired .dt-ic { background: var(--bg-tint); color: var(--muted); }
.ready .dt-main { min-width: 0; flex: 1; }
.ready .dt-kind { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.ready .dt-file { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); margin-top: 3px; word-break: break-word; }
.ready .dt-size { font-size: 12px; color: var(--muted); margin-top: 4px; }
.ready .dt-dl { margin-top: auto; }

.ready .expiry-ok { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }
.ready .expiry-ok .ic { width: 15px; height: 15px; }
.ready .expiry-ok strong { color: var(--ink-2); font-weight: 600; }
.ready .expiry-note { margin-top: 14px; }

/* ---------- Check before you send ---------- */
.ready .check-list { display: flex; flex-direction: column; gap: 10px; }
.ready .check-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; background: var(--warn-bg); border-radius: var(--r-md); }
.ready .ci-ic { width: 22px; height: 22px; border-radius: 50%; background: var(--warn); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.ready .ci-ic .ic { width: 14px; height: 14px; }
.ready .ci-text { font-size: 13.5px; color: var(--warn-text); line-height: 1.5; }

.ready .check-clear { display: flex; gap: 13px; align-items: center; }
.ready .cc-ic { width: 38px; height: 38px; border-radius: 50%; background: var(--ok); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.ready .cc-ic .ic { width: 20px; height: 20px; }
.ready .cc-title { font-weight: 700; font-size: 14px; color: var(--ink); }
.ready .cc-sub { font-size: 13px; color: var(--muted); margin-top: 1px; }

/* ---------- Recommendation summary ---------- */
.ready .section-h h2 { display: inline-flex; align-items: center; gap: 8px; }
.ready .section-h h2 .ic { width: 18px; height: 18px; color: var(--coral); }
.ready .rec-ledger { margin-bottom: 18px; }
.ready .rec-why { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }
.ready .rec-why li { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

.ready .impact-table { margin-top: 18px; }
.ready .impact-table table { width: 100%; border-collapse: collapse; }
.ready .impact-table th, .ready .impact-table td { padding: 9px 14px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--line); }
.ready .impact-table th { font-size: 11.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .02em; background: var(--surface-2); }
.ready .impact-table td { color: var(--ink-2); }
.ready .impact-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.ready .impact-table tr:last-child td { border-bottom: none; }
.ready .delta-save { color: var(--ok-text); font-weight: 600; }
.ready .delta-cost { color: var(--coral-text); font-weight: 600; }

/* ---------- Footer ---------- */
.ready .ready-foot { display: flex; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
@media (max-width: 520px) { .ready .ready-foot .btn { width: 100%; } }
