/* ==========================================================================
   module10.css — Final QA & Launch Prep (Module 10)
   Load after style.css, module7.css.
   ========================================================================== */

/* ---------- 404 page ---------- */
.notfound {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 560px;
  margin: 0 auto;
}
.notfound__code {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-accent-saffron);
  margin: 0 0 8px;
  line-height: 1;
}
.notfound__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 12px;
}
.notfound__desc {
  color: var(--color-text-muted);
  margin: 0 0 28px;
  line-height: 1.6;
}
.notfound__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.notfound__actions .btn-primary,
.notfound__actions .btn-ghost {
  display: inline-block;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
}
