/* ============ HOMEPAGE ============ */

.hero {
  padding: var(--sp-16) 0 var(--sp-10);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(14,124,107,0.08), transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: var(--sp-3); }
.hero .lead { margin-bottom: var(--sp-4); max-width: 54ch; }
.hero-ctas { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* Industry selector */
.industry-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.industry-group h4 { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: var(--sp-2); text-transform: none; }
.industry-tile {
  display: block; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14.5px; font-weight: 500; color: var(--text-primary); margin-bottom: 8px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.industry-tile:hover { border-color: var(--accent); background: var(--teal-050); }
@media (max-width: 900px) { .industry-groups { grid-template-columns: 1fr; } }

/* MemoFaceAI spotlight — amber accent, distinct card treatment */
.mf-spotlight {
  background: var(--navy-900);
  border-radius: 20px;
  padding: var(--sp-8) var(--sp-6);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-6); align-items: center;
  position: relative; overflow: hidden;
}
.mf-spotlight::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(245,185,66,0.14), transparent 70%);
}
.mf-spotlight h2 { color: var(--white); }
.mf-spotlight p { color: var(--text-inverse-muted); }
.mf-diagram { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-card); padding: var(--sp-3); }
.mf-diagram-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 13.5px; color: var(--text-inverse-muted); }
.mf-diagram-row:last-child { border-bottom: none; }
.mf-diagram-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); flex-shrink: 0; }
@media (max-width: 900px) { .mf-spotlight { grid-template-columns: 1fr; } }

/* Technology recommender (mini interactive) */
.tech-tool { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: var(--sp-4); }
.tech-tool-row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); padding: 14px 0; border-bottom: 1px solid var(--border); }
.tech-tool-row:last-of-type { border-bottom: none; }
.tech-tool-row label { font-size: 14.5px; font-weight: 500; color: var(--text-primary); }
.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 20px;
  border: 1px solid var(--border-strong); background: var(--white); cursor: pointer;
  color: var(--text-secondary); transition: all var(--dur-fast);
}
.pill.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.tech-result { margin-top: var(--sp-3); padding: var(--sp-3); background: var(--teal-050); border-radius: var(--radius); }
.tech-result .rec-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--navy-900); }
.tech-result .rec-why { font-size: 13.5px; color: var(--text-secondary); margin-top: 4px; }

/* Solutions overview strip */
.solution-cat {
  display: flex; flex-direction: column; gap: 4px; padding: var(--sp-3);
  border: 1px solid var(--border); border-radius: var(--radius-card);
}
.solution-cat .n { font-size: 12px; color: var(--text-muted); font-family: var(--font-display); }
.solution-cat h4 { font-size: 15.5px; }
.solution-cat p { font-size: 13px; }

/* Outcomes */
.outcome-card { border-left: 2px solid var(--accent); padding-left: var(--sp-3); }
.outcome-metric { font-family: var(--font-display); font-size: 30px; font-weight: 500; color: var(--navy-900); }

/* Final CTA */
.cta-band { background: var(--teal-050); border-radius: 20px; padding: var(--sp-6); text-align: center; }
.cta-band h2 { margin-bottom: var(--sp-2); }
