/* ============================================================
   09_ NOTAUSGANG / EXIT-MODUL  (Screen 1)
   ============================================================ */
.exit {
  margin-top: 40px;
  background: var(--inverse);
  color: var(--card);
  padding: 28px 24px;
  display: grid;
  gap: 18px;
}
@media (min-width: 720px) {
  .exit { padding: 32px 36px; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
}
.exit-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,242,.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.exit-head .crosshair {
  display: inline-block;
  width: 10px; height: 10px;
  position: relative;
}
.exit-head .crosshair::before,
.exit-head .crosshair::after {
  content: "";
  position: absolute;
  background: rgba(245,245,242,.7);
}
.exit-head .crosshair::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.exit-head .crosshair::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.exit-title {
  font-family: var(--font-tight);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.014em;
  margin-bottom: 8px;
  color: var(--card);
}
.exit-desc {
  font-size: 14.5px;
  color: rgba(245,245,242,.7);
  max-width: 50ch;
}

