html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #05070a;
}

.engineering-launcher {
  height: 100%;
  display: grid;
  grid-template-rows: 58px 1fr;
}

.engineering-bar {
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid #23303c;
  background: #05070a;
  color: #f4f7fa;
  font-family: Arial, Helvetica, sans-serif;
}

.engineering-bar .site-logo {
  width: 190px;
}

.engineering-title {
  flex: 1;
  min-width: 0;
  color: #9aa7b5;
  font-size: 12px;
}

.engineering-title strong {
  color: #cfff47;
}

.engineering-actions {
  display: flex;
  gap: 8px;
}

.engineering-action {
  padding: 9px 12px;
  border: 1px solid #23303c;
  border-radius: 8px;
  color: #f4f7fa;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  background: #0b1016;
}

.engineering-action.primary {
  border-color: #cfff47;
  background: #cfff47;
  color: #071006;
}

.engineering-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f5f7f8;
}

@media (max-width: 700px) {
  .engineering-launcher {
    grid-template-rows: 52px 1fr;
  }

  .engineering-bar {
    gap: 8px;
    padding: 0 9px;
  }

  .engineering-bar .site-logo {
    width: 130px;
  }

  .engineering-title {
    display: none;
  }

  .engineering-action {
    padding: 8px;
    font-size: 10px;
  }
}
