/* Recall calculator — uses theme tokens from theme.css. */

.recall-page {
  background: var(--bg);
  min-height: 100vh;
  padding: 5rem 1.25rem 4rem;
}

.recall-shell {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.recall-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: 1rem;
}

.recall-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.recall-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.recall-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.recall-field { display: flex; flex-direction: column; gap: 0.4rem; }

.recall-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream-2);
  letter-spacing: 0.01em;
}

.recall-input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg);
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.recall-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.18);
}

.recall-input-prefix {
  position: relative;
}
.recall-input-prefix .recall-prefix {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}
.recall-input-prefix .recall-input { padding-left: 1.6rem; width: 100%; }

.recall-result-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.recall-result-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.recall-result-primary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.recall-result-meta {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.recall-result-meta-cell {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}
.recall-result-meta-cell .recall-result-label { margin-bottom: 0.25rem; }
.recall-result-meta-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}

.recall-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
}

.recall-footnote {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

.recall-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.85;
}

@media (max-width: 600px) {
  .recall-page { padding: 3rem 1rem 2rem; }
  .recall-shell { padding: 1.75rem 1.25rem; }
  .recall-result-panel { padding: 1.25rem 1.25rem; }
  .recall-result-meta { grid-template-columns: 1fr; }
}
