/* Recall ROI widget for the landing page hero — uses theme tokens from theme.css. */

.recall-roi {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 1.25rem;
}

.recall-roi-shell {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.recall-roi-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.recall-roi-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.recall-roi-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.recall-roi-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.recall-roi-cta {
  display: block;
  width: 100%;
  text-align: center;
}

.recall-roi-footnote {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
  margin-top: 0.5rem;
}

@media (max-width: 720px) {
  .recall-roi-shell { grid-template-columns: 1fr; }
}
