/* Findability check. The verdict block is the whole page; everything else is
   framing. Temperature runs cold (nothing found) to hot (already findable),
   which is the reverse of what a visitor hopes for and the point of the tool. */

.check-form {
  display: grid;
  gap: 0.9rem;
  max-width: 30rem;
  margin: 1.8rem 0 0;
}
.check-form .field {
  display: grid;
  gap: 0.35rem;
}
.check-form .field > span {
  font-size: 0.9rem;
  font-weight: 650;
}
.check-form .field em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted-foreground);
}
.check-form input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--card);
  color: var(--foreground);
  font: inherit;
  font-size: 1rem;
}
.check-form input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
.check-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.check-out {
  margin-top: 2rem;
}
.verdict {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--card);
  border-left-width: 4px;
}
.verdict-unknown { border-left-color: var(--danger); }
.verdict-thin    { border-left-color: #b7791f; }
.verdict-known   { border-left-color: var(--live); }

.verdict-badge {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.verdict-name {
  margin: 0.2rem 0 0.5rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.15;
}
.verdict-line {
  margin: 0 0 0.9rem;
  font-size: 1.02rem;
}
.verdict-quote {
  margin: 0 0 1rem;
  padding: 0.7rem 0.9rem;
  border-left: 2px solid var(--border);
  background: var(--secondary);
  border-radius: 0.5rem;
  font-size: 0.95rem;
}
.verdict-sub {
  margin: 0.9rem 0 0.3rem;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--muted-foreground);
}
.verdict ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.verdict-warn {
  margin: 1rem 0 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.6rem;
  background: color-mix(in srgb, var(--danger) 10%, var(--card));
  font-size: 0.9rem;
}
.verdict-cta {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.verdict-cta p {
  margin: 0 0 0.8rem;
  font-size: 0.98rem;
}
.check-caveat,
.check-error {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.check-error {
  color: var(--danger);
  font-size: 0.95rem;
}

.check-explain {
  margin-top: 3rem;
  max-width: 38rem;
}
.check-explain h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.check-explain p {
  line-height: 1.65;
  margin: 0 0 0.9rem;
}
