/* Spring Launch announcement bar — site-wide.
   REMOVE THIS FILE AND ALL REFERENCES ON 1 JUNE 2026 when the launch offer expires.
   Pages to clean up: index, about, services, toolkit, book, phase-0,
   selectionwise-method, assessment, contact. */

.launch-bar {
  background: #1e293b;
  color: #fff;
  padding: 10px 24px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Plus Jakarta Sans', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  z-index: 200;
}
.launch-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.launch-bar-text {
  color: rgba(255,255,255,0.92);
}
.launch-bar-text strong {
  color: #FF6B35;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.launch-bar-code {
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: #fff;
  margin-left: 4px;
  white-space: nowrap;
}
.launch-bar-cta {
  color: #FF6B35;
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.launch-bar-cta:hover {
  color: #fff;
}
.launch-bar-cta:focus-visible {
  outline: 2px solid #FF6B35;
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .launch-bar {
    padding: 8px 14px;
    font-size: 12.5px;
  }
  .launch-bar-inner {
    gap: 8px;
  }
  .launch-bar-code {
    display: inline-block;
    font-size: 11.5px;
  }
}
