/* Identity-check results — text/identity leak path */
:root {
  --icv1-bg: #eef2f6;
  --icv1-surface: #ffffff;
  --icv1-navy: #0b1f3a;
  --icv1-text: #142033;
  --icv1-muted: #5b6b7c;
  --icv1-border: #e4ebf3;
  --icv1-gold: #e2b93b;
  --icv1-radius: 18px;
  --icv1-shadow: 0 10px 28px rgba(15, 35, 70, 0.07);
}

*,
*::before,
*::after { box-sizing: border-box; }

body.identity-check-v1-body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--icv1-bg) !important;
  color: var(--icv1-text);
}

.icv1-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.icv1-main {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 1.35rem 1.1rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.icv1-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 1rem;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  background: #e7f7ee;
  border: 1px solid #c6ead4;
}

.icv1-status__ok {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #166534;
  font-weight: 700;
  font-size: 0.94rem;
}

.icv1-status__check {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #22c55e;
}

.icv1-status__time { color: #6b7c8d; font-size: 0.86rem; }

.icv1-demo-note {
  margin: 0;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  background: #fff8e8;
  border: 1px solid #f0e0b0;
  color: #7a5b12;
  font-size: 0.9rem;
}

.icv1-card {
  background: var(--icv1-surface);
  border: 1px solid var(--icv1-border);
  border-radius: var(--icv1-radius);
  box-shadow: var(--icv1-shadow);
  padding: 1.3rem 1.35rem;
}

/* "My Options" — same card footprint as the findings card above,
   intentionally left empty pending content. */
.icv1-options {
  min-height: 260px;
}

.icv1-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6e3b;
}

.icv1-card h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--icv1-navy);
  line-height: 1.2;
}

.icv1-card__sub {
  margin: 0.5rem 0 0;
  color: var(--icv1-muted);
  line-height: 1.5;
  max-width: 40rem;
}

.icv1-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
}

.icv1-score__value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--icv1-navy);
  line-height: 1;
}

.icv1-score__value span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--icv1-muted);
}

.icv1-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.icv1-metric {
  background: #f7f9fc;
  border: 1px solid var(--icv1-border);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.icv1-metric__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--icv1-muted);
}

.icv1-metric__value {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--icv1-navy);
}

.icv1-findings {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.icv1-findings li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--icv1-border);
  border-radius: 12px;
  background: #fbfcfe;
}

.icv1-findings strong {
  display: block;
  color: var(--icv1-navy);
}

.icv1-findings span {
  color: var(--icv1-muted);
  font-size: 0.88rem;
}

.icv1-sev {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.icv1-sev--high { background: #fee2e2; color: #dc2626; }
.icv1-sev--medium { background: #ffedd5; color: #ea580c; }
.icv1-sev--low { background: #dcfce7; color: #16a34a; }

.icv1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.icv1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}

.icv1-btn--gold { background: var(--icv1-gold); color: #1a1405; }
.icv1-btn--ghost {
  background: transparent;
  color: var(--icv1-navy);
  border: 1px solid var(--icv1-border);
}

.icv1-footer {
  margin-top: auto;
  padding: 1rem 1.1rem 1.5rem;
  text-align: center;
  color: var(--icv1-muted);
  font-size: 0.85rem;
}

.icv1-footer a { color: var(--icv1-navy); }
