/* ── Results Section ──────────────────────────────────────── */
.results {
  padding: 6rem clamp(1.5rem,6vw,9rem);
  background: var(--dadi-light);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.results-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.results-head h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; }
.results-head h2 .plain { color: #0f172a; }
.results-head p  { color: #64748b; max-width: 42rem; }
.results-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--dadi-blue);
  background: rgba(74,75,113,.08);
  border: 1px solid rgba(74,75,113,.2);
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  align-self: flex-start;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.result-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}
.result-card.visible {
  opacity: 1;
  transform: scale(1);
}
.result-card:hover { box-shadow: var(--shadow-md); }
.result-card-icon {
  position: absolute; top: 0; right: 0;
  padding: 0.75rem;
  opacity: 0.15;
  transition: opacity 0.3s;
}
.result-card:hover .result-card-icon { opacity: 0.25; }
.result-metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dadi-blue);
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
}
.result-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 1rem;
}
.result-meta { font-size: 0.75rem; color: #64748b; }
.result-meta-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
}
.result-meta-row .key { opacity: 0.7; }
.result-meta-row .val { font-weight: 500; color: #334155; }

.results-cta { margin-top: 3rem; text-align: center; }

@media (min-width: 640px)  { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .results-grid { grid-template-columns: repeat(4,1fr); }
  .results-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .results-badge { align-self: auto; }
}
