.topbar {
  position: sticky;
  top: 22px;
  z-index: 15;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.topbar__logo-slot {
  min-height: 54px;
  border: 1.5px dashed #bfdbfe;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-strong);
  font-weight: 700;
  background: #f8fbff;
}

.main-header {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.main-header__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.main-header__eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.main-header__title {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  margin-bottom: 8px;
}

.main-header__description {
  color: var(--text-soft);
  max-width: 740px;
  line-height: 1.6;
}

.main-header__status {
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 700;
}

.status-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 980px) {
  .topbar {
    position: static;
    padding: 14px 16px;
  }

  .main-header__content {
    flex-direction: column;
  }

  .main-header__status {
    min-width: auto;
    justify-content: flex-start;
  }
}
