/* verdict.css - page-scoped styles for one-key.php and copy-check.php only.
   Shared design language follows go.php (gradient h1, hairline card tops).
   Do not import from story-engine.css - that file is owned by another lane. */

.ok-hero { padding: clamp(56px, 7vw, 84px) 0 clamp(24px, 4vw, 40px); text-align: center; }
.ok-hero h1 {
  font-family: var(--f);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e8e6e1 0%, #a78bfa 45%, #3b82f6 75%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ok-grid { max-width: 900px; margin: 0 auto; display: grid; gap: 22px; }
/* Grid items default to min-width auto, so a wide pre block would stretch
   the card past the viewport and clip every paragraph. Pin it to 0. */
.ok-grid > * { min-width: 0; }

.ok-card {
  min-width: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 26px;
  position: relative;
}
.ok-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
  border-radius: var(--r) var(--r) 0 0;
}
.ok-card h2 {
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 700;
  margin-bottom: 6px;
}
.ok-route {
  font-family: var(--fm);
  font-size: 13px;
  color: var(--accent-light);
  word-break: break-all;
  margin-bottom: 10px;
}
.ok-card p { font-size: 15px; color: var(--ink-s); line-height: 1.7; margin-bottom: 12px; }

.ok-code-label {
  font-family: var(--fm);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-f);
  margin: 14px 0 6px;
}
.ok-code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ok-code pre {
  margin: 0;
  font-family: var(--fm);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-s);
  white-space: pre;
}

.ok-note {
  font-size: 13px;
  color: var(--ink-f);
  line-height: 1.6;
  margin-top: 10px;
}

.ok-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--pill);
  font-family: var(--fm);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ok-chip.free { background: rgba(52,211,153,0.12); color: var(--green); border: 1px solid rgba(52,211,153,0.32); }
.ok-chip.pro { background: rgba(167,139,250,0.12); color: #a78bfa; border: 1px solid rgba(167,139,250,0.32); }
.ok-chip.flag { background: rgba(245,158,11,0.10); color: #f59e0b; border: 1px solid rgba(245,158,11,0.32); }

.ok-snapshot {
  max-width: 760px;
  margin: 0 auto;
}
.ok-snapshot-row {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px; flex-wrap: wrap;
}
.ok-snapshot-row:last-child { border-bottom: none; }
.ok-snapshot-k {
  min-width: 160px; color: var(--ink-f);
  font-family: var(--fm); font-size: 12.5px;
  letter-spacing: 0.02em; padding-top: 2px;
}
.ok-snapshot-v { flex: 1; color: var(--ink-s); line-height: 1.6; min-width: 200px; }

@media (max-width: 480px) {
  .ok-card { padding: 18px 16px; }
  .ok-snapshot-k { min-width: 120px; }
}
