/* REALITYGAP_CHECKER_FIRST_RUN_CTA_AND_RESULT_CLARITY_V1 */

:root {
  --checker-bg: #f6f4ef;
  --checker-panel: #ffffff;
  --checker-panel-soft: #fbfaf7;
  --checker-text: #151515;
  --checker-muted: #5f5f5f;
  --checker-border: #ded8cc;
  --checker-strong-border: #bbb2a3;
  --checker-radius-lg: 24px;
  --checker-radius-md: 16px;
  --checker-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

body.checker-first-run-body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34rem),
    linear-gradient(180deg, #f8f6f1 0%, #eee9df 100%);
}

.checker-first-run-shell {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
}

.checker-first-run-hero,
.checker-first-run-anchor,
.checker-result-clarity,
.checker-result-clarity-card {
  border: 1px solid var(--checker-border);
  border-radius: var(--checker-radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--checker-shadow);
}

.checker-first-run-hero {
  margin: 26px auto 26px;
  padding: 28px;
}

.checker-first-run-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid var(--checker-border);
  border-radius: 999px;
  background: var(--checker-panel-soft);
  color: var(--checker-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checker-first-run-hero h1,
.checker-result-clarity h2 {
  margin: 0 0 14px;
  color: var(--checker-text);
  letter-spacing: -0.055em;
}

.checker-first-run-hero h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.98;
}

.checker-first-run-hero p,
.checker-result-clarity p,
.checker-result-clarity li {
  color: var(--checker-muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.checker-first-run-lede {
  max-width: 760px;
  margin: 0 0 18px;
  color: #333 !important;
  font-size: clamp(1.1rem, 1.7vw, 1.28rem) !important;
}

.checker-first-run-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.checker-first-run-primary,
.checker-first-run-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.checker-first-run-primary {
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
}

.checker-first-run-primary:hover {
  background: #2a2a2a;
}

.checker-first-run-secondary {
  border: 1px solid var(--checker-strong-border);
  background: #fffdf8;
  color: #111111;
}

.checker-first-run-secondary:hover {
  background: #f5efe3;
}

.checker-first-run-steps,
.checker-first-run-guardrails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.checker-first-run-steps li,
.checker-first-run-guardrails li {
  padding: 8px 11px;
  border: 1px solid var(--checker-border);
  border-radius: 999px;
  background: var(--checker-panel-soft);
  color: var(--checker-text);
  font-size: 0.94rem;
  font-weight: 750;
}

.checker-first-run-anchor {
  margin: 24px auto;
  padding: 18px 22px;
  background: #fffdf8;
}

.checker-first-run-anchor p {
  margin: 0;
  color: var(--checker-muted);
}

.checker-first-run-anchor strong {
  color: var(--checker-text);
}

.checker-result-clarity {
  margin: 34px auto;
  padding: 28px;
}

.checker-result-clarity h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.checker-result-clarity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.checker-result-clarity-card {
  padding: 20px;
  background: var(--checker-panel-soft);
  box-shadow: none;
}

.checker-result-clarity-card h3 {
  margin: 0 0 8px;
  color: var(--checker-text);
  font-size: 1.06rem;
  letter-spacing: -0.025em;
}

.checker-result-clarity-card p {
  margin: 0;
}

.checker-result-clarity-card a {
  color: #111111;
  font-weight: 800;
}

.checker-result-clarity-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--checker-strong-border);
  border-radius: var(--checker-radius-md);
  background: #fffdf8;
  color: var(--checker-text) !important;
  font-weight: 750;
}

@media (max-width: 760px) {
  .checker-first-run-shell {
    width: min(100% - 22px, 1080px);
  }

  .checker-first-run-hero,
  .checker-result-clarity,
  .checker-first-run-anchor {
    border-radius: 18px;
    padding: 20px;
  }

  .checker-first-run-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .checker-first-run-actions {
    flex-direction: column;
  }

  .checker-first-run-primary,
  .checker-first-run-secondary {
    width: 100%;
  }

  .checker-result-clarity-grid {
    grid-template-columns: 1fr;
  }
}
