/* /claim-check — the free claim checker.
   Builds on record.css's --rc-* tokens and receipt.css's verdict chips; adds
   only form styling here. No new palette, no second design system.

   ⚑ The form is a GET form and this file styles no interactive state that
   JavaScript would own: there is no client script on this page, so a verdict
   cannot be computed, cached, or restyled in the browser. */

.cc-form { display: grid; gap: 18px; margin: 30px 0 0; max-width: 680px; }
@media (min-width: 680px) { .cc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }

.cc-field { display: flex; flex-direction: column; gap: 7px; }
.cc-label {
  font-family: var(--rc-mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--rc-ink4);
}
.cc-input, .cc-select {
  background: var(--rc-sunk); color: var(--rc-ink);
  border: 1px solid var(--rc-line); border-radius: 2px;
  padding: 11px 12px; font-family: var(--rc-mono); font-size: 13px;
}
.cc-input:focus-visible, .cc-select:focus-visible { outline: 2px solid var(--rc-copper); outline-offset: 2px; }
.cc-hint { font-size: 12px; color: var(--rc-ink4); }
/* ⚑ An option the policy will refuse is marked, never hidden. Hiding them
   would make the form incapable of teaching where the edge is. */
.cc-select option[data-unsupported] { color: var(--rc-ink4); }

.cc-submit {
  justify-self: start; cursor: pointer;
  background: var(--rc-copper); color: var(--rc-bg);
  border: 0; border-radius: 2px; padding: 13px 24px;
  font-family: var(--rc-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
}
.cc-submit:hover { filter: brightness(1.08); }

.cc-result { margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--rc-line); }
.cc-share {
  margin-top: 26px; font-family: var(--rc-mono); font-size: 12px;
  color: var(--rc-ink3); word-break: break-all;
  background: var(--rc-sunk); border: 1px solid var(--rc-line); padding: 14px 16px;
}
.cc-share b { color: var(--rc-ink2); font-weight: 500; display: block; margin-bottom: 8px; letter-spacing: .1em; text-transform: uppercase; font-size: 10px; }

.cc-envelope { margin-top: 34px; }
.cc-env-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; align-items: baseline; }
.cc-env-k { font-family: var(--rc-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--rc-ink4); min-width: 130px; }
.cc-env-v { font-family: var(--rc-mono); font-size: 12.5px; color: var(--rc-ink2); }

/* Capability boundary — derived refusals with anonymous interest buttons. */
.cc-boundary { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--rc-line); }
.cc-boundary-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.cc-boundary-item { border: 1px solid var(--rc-line); background: var(--rc-sunk); padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.cc-boundary-head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.cc-boundary-head .cc-code { font-family: var(--rc-mono); font-size: 13px; color: var(--rc-ink1); }
.cc-kind { font-family: var(--rc-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--rc-ink4); white-space: nowrap; }
.cc-boundary-reason { font-size: 13px; line-height: 1.55; color: var(--rc-ink3); margin: 0; flex: 1; }
.cc-interest { margin: 0; }
.cc-interest-btn { font-family: var(--rc-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--rc-ink2); background: none; border: 1px solid var(--rc-line); padding: 7px 12px; cursor: pointer; }
.cc-interest-btn:hover { border-color: var(--rc-ink3); }
.cc-noted { font-family: var(--rc-mono); font-size: 12px; color: var(--rc-ink2); border: 1px solid var(--rc-line); padding: 10px 14px; margin: 14px 0 0; }
.cc-boundary-foot { margin-top: 18px; font-size: 12.5px; color: var(--rc-ink4); }
